diff --git a/.editorconfig b/.editorconfig index 4ae1aa0..64f1a6a 100644 --- a/.editorconfig +++ b/.editorconfig @@ -20,6 +20,6 @@ insert_final_newline = false [*/src/Resources/contao/**.{css,js,php}] indent_style = tab -[*/src/Resources/contao/**.html5] +[*.{html.twig,html5}] indent_style = space indent_size = 2 diff --git a/CHANGELOG.md b/CHANGELOG.md index 34af798..01fcc36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,12 @@ Types of changes Security in case of vulnerabilities. ) +## [3.0.0](https://github.com/contao-themes-net/odd-theme-bundle/tree/3.0.0) – 2022-09-25 + +- [Changed] Increase Contao version to 5 only and PHP 8 +- [Added] Add migrations for demo data import (Setup without further steps, install and run migrations -> Done!) +- [Removed] Cleanup older Contao SQL files + ## [2.0.4](https://github.com/contao-themes-net/odd-theme-bundle/tree/2.0.4) – 2022-10-11 - [Changed] now require terminal42/contao-folderpage version 2.* or 3.* diff --git a/composer.json b/composer.json index 900d69e..4d3e776 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "contao-themes-net/odd-theme-bundle", "type":"contao-bundle", - "description": "theme odd bundle for Contao 4", + "description": "theme odd bundle for Contao 5", "keywords":["contao","theme","template"], "homepage": "https://contao-themes.net", "license": "proprietary", @@ -28,32 +28,28 @@ "donate": "https://contao-themes.net/sponsoring.html" }, "require": { - "php": "^7.2 || ^8.0", - "contao/core-bundle": "^4.9", - "madeyourday/contao-rocksolid-frontend-helper": "~2.0", - "terminal42/contao-folderpage": "^2.0 || ^3.0", - "pdir/contao-theme-helper-bundle": "^1.0", - "contao-themes-net/theme-components-bundle": "^1.2" + "php": "^8.1", + "contao/core-bundle": "^5.0", + "madeyourday/contao-rocksolid-frontend-helper": "^2.2", + "terminal42/contao-folderpage": "^3.0", + "pdir/contao-theme-helper-bundle": "^1.5", + "pdir/contao-webtools": "^1.5", + "contao-themes-net/theme-components-bundle": "^1.4", + "contao-dd/advanced-classes-bundle": "^1.5" }, - "conflict": { - "contao/core": "*" + "require-dev": { + "contao/manager-plugin": "^2.0", + "contao/easy-coding-standard": "^3.0", + "phpunit/phpunit": "^9.5", + "symfony/phpunit-bridge": "^6.0" }, "autoload": { "psr-4": { - "ContaoThemesNet\\ThemeOddBundle\\": "src/" - }, - "classmap": [ - "src/Resources/contao/" - ], - "exclude-from-classmap": [ - "src/Resources/contao/config/", - "src/Resources/contao/dca/", - "src/Resources/contao/languages/", - "src/Resources/contao/templates/" - ] + "ContaoThemesNet\\OddThemeBundle\\": "src/" + } }, "extra": { - "contao-manager-plugin": "ContaoThemesNet\\ThemeOddBundle\\ContaoManagerPlugin" + "contao-manager-plugin": "ContaoThemesNet\\OddThemeBundle\\ContaoManager\\Plugin" }, "funding": [ { @@ -69,5 +65,12 @@ "pdir/maklermodul-bundle": "ODD Theme includes all styles for maklermodul bundle. / ODD Theme enthält Stylesheets für das Maklermodul Bundle.", "pdir/social-feed-bundle": "ODD Theme includes all styles for social feed bundle. / ODD Theme enthält Stylesheets für das Social Feed Bundle.", "pdir/animated-timeline-bundle": "Render content in a dynamic timeline. / Zeige Inhalte in einem dynamischen Zeitstrahl an." + }, + "config": { + "allow-plugins": { + "contao-components/installer": true, + "dealerdirect/phpcodesniffer-composer-installer": true, + "contao/manager-plugin": true + } } } diff --git a/config/services.yml b/config/services.yml new file mode 100644 index 0000000..dbb5319 --- /dev/null +++ b/config/services.yml @@ -0,0 +1,13 @@ +services: + _defaults: + autoconfigure: true + autowire: true + + ContaoThemesNet\OddThemeBundle\: + resource: ../src/ + + # Migration + ContaoThemesNet\OddThemeBundle\Migration\: + resource: "../src/Migration/*" + tags: + - { name: contao.migration, priority: 99 } diff --git a/src/Resources/contao/config/config.php b/contao/config/config.php similarity index 72% rename from src/Resources/contao/config/config.php rename to contao/config/config.php index dabac7e..3a60432 100644 --- a/src/Resources/contao/config/config.php +++ b/contao/config/config.php @@ -1,9 +1,10 @@ array())); +ArrayUtil::arrayInsert($GLOBALS['TL_CTE'], 1, array('themeOdd' => array())); /** * Add content element @@ -39,12 +40,12 @@ /** * Backend Modules */ -array_insert($GLOBALS['BE_MOD']['contaoThemesNet'], 1, array +ArrayUtil::arrayInsert($GLOBALS['BE_MOD']['contaoThemesNet'], 1, array ( 'oddThemeSetup' => array ( - 'callback' => 'ContaoThemesNet\\ThemeOddBundle\\Module\\OddThemeSetup', + 'callback' => 'ContaoThemesNet\\OddThemeBundle\\Module\\OddThemeSetup', 'tables' => array(), - 'stylesheet' => 'bundles/pdirthemeodd/scss/backend.css' + 'stylesheet' => 'bundles/contaothemesnetoddtheme/scss/backend.css' ), )); diff --git a/contao/dca/tl_content.php b/contao/dca/tl_content.php new file mode 100644 index 0000000..42e732e --- /dev/null +++ b/contao/dca/tl_content.php @@ -0,0 +1,48 @@ + true, + 'search' => true, + 'inputType' => 'text', + 'eval' => [ + 'mandatory' => false, + 'rgxp' => 'url', + 'decodeEntities' => true, + 'maxlength' => 255, + 'dcaPicker' => true, + 'addWizardClass' => false, + 'tl_class' => 'w50'], + 'sql' => "TEXT NULL" +]; + +$GLOBALS['TL_DCA']['tl_content']['fields']['odd_linkText'] = [ + 'exclude' => true, + 'inputType' => 'text', + 'eval' => ['tl_class' => 'w50'], + 'sql' => "TEXT NULL" +]; + +$GLOBALS['TL_DCA']['tl_content']['fields']['target'] = [ + 'exclude' => true, + 'inputType' => 'checkbox', + 'eval' => ['tl_class' => 'w50 m12'], + 'sql' => "char(1) NOT NULL default ''" +]; + +$GLOBALS['TL_DCA']['tl_content']['fields']['odd_subHeadline'] = [ + 'exclude' => true, + 'inputType' => 'text', + 'eval' => ['tl_class' => 'w50'], + 'sql' => "TEXT NULL" +]; diff --git a/src/Resources/public/.public b/contao/files/odd/.public similarity index 100% rename from src/Resources/public/.public rename to contao/files/odd/.public diff --git a/src/Resources/public/img/ODD_Logo.png b/contao/files/odd/img/ODD_Logo.png similarity index 100% rename from src/Resources/public/img/ODD_Logo.png rename to contao/files/odd/img/ODD_Logo.png diff --git a/src/Resources/public/img/favicon.ico b/contao/files/odd/img/favicon.ico similarity index 100% rename from src/Resources/public/img/favicon.ico rename to contao/files/odd/img/favicon.ico diff --git a/src/Resources/public/img/verlassene-orte-meissen/IMG_3790_1_HDR_tonemapped.jpg b/contao/files/odd/img/verlassene-orte-meissen/IMG_3790_1_HDR_tonemapped.jpg similarity index 100% rename from src/Resources/public/img/verlassene-orte-meissen/IMG_3790_1_HDR_tonemapped.jpg rename to contao/files/odd/img/verlassene-orte-meissen/IMG_3790_1_HDR_tonemapped.jpg diff --git a/src/Resources/public/img/verlassene-orte-meissen/PICT0004_03_8bit.jpg b/contao/files/odd/img/verlassene-orte-meissen/PICT0004_03_8bit.jpg similarity index 100% rename from src/Resources/public/img/verlassene-orte-meissen/PICT0004_03_8bit.jpg rename to contao/files/odd/img/verlassene-orte-meissen/PICT0004_03_8bit.jpg diff --git a/src/Resources/public/img/verlassene-orte-meissen/alte-ziegelei-1.jpg b/contao/files/odd/img/verlassene-orte-meissen/alte-ziegelei-1.jpg similarity index 100% rename from src/Resources/public/img/verlassene-orte-meissen/alte-ziegelei-1.jpg rename to contao/files/odd/img/verlassene-orte-meissen/alte-ziegelei-1.jpg diff --git a/src/Resources/public/img/verlassene-orte-meissen/alte-ziegelei-3.jpg b/contao/files/odd/img/verlassene-orte-meissen/alte-ziegelei-3.jpg similarity index 100% rename from src/Resources/public/img/verlassene-orte-meissen/alte-ziegelei-3.jpg rename to contao/files/odd/img/verlassene-orte-meissen/alte-ziegelei-3.jpg diff --git a/src/Resources/public/img/verlassene-orte-meissen/e-werk-brauhausstrasse-1.jpg b/contao/files/odd/img/verlassene-orte-meissen/e-werk-brauhausstrasse-1.jpg similarity index 100% rename from src/Resources/public/img/verlassene-orte-meissen/e-werk-brauhausstrasse-1.jpg rename to contao/files/odd/img/verlassene-orte-meissen/e-werk-brauhausstrasse-1.jpg diff --git a/src/Resources/public/img/verlassene-orte-meissen/e-werk-brauhausstrasse-2.jpg b/contao/files/odd/img/verlassene-orte-meissen/e-werk-brauhausstrasse-2.jpg similarity index 100% rename from src/Resources/public/img/verlassene-orte-meissen/e-werk-brauhausstrasse-2.jpg rename to contao/files/odd/img/verlassene-orte-meissen/e-werk-brauhausstrasse-2.jpg diff --git a/src/Resources/public/img/verlassene-orte-meissen/hamburger-hof.jpg b/contao/files/odd/img/verlassene-orte-meissen/hamburger-hof.jpg similarity index 100% rename from src/Resources/public/img/verlassene-orte-meissen/hamburger-hof.jpg rename to contao/files/odd/img/verlassene-orte-meissen/hamburger-hof.jpg diff --git a/src/Resources/public/img/verlassene-orte-meissen/herrenhaus-dresdner-strasse.jpg b/contao/files/odd/img/verlassene-orte-meissen/herrenhaus-dresdner-strasse.jpg similarity index 100% rename from src/Resources/public/img/verlassene-orte-meissen/herrenhaus-dresdner-strasse.jpg rename to contao/files/odd/img/verlassene-orte-meissen/herrenhaus-dresdner-strasse.jpg diff --git a/src/Resources/public/img/verlassene-orte-meissen/jahnhalle.jpg b/contao/files/odd/img/verlassene-orte-meissen/jahnhalle.jpg similarity index 100% rename from src/Resources/public/img/verlassene-orte-meissen/jahnhalle.jpg rename to contao/files/odd/img/verlassene-orte-meissen/jahnhalle.jpg diff --git a/src/Resources/public/img/verlassene-orte-meissen/kaserne-bohnitzsch-1.jpg b/contao/files/odd/img/verlassene-orte-meissen/kaserne-bohnitzsch-1.jpg similarity index 100% rename from src/Resources/public/img/verlassene-orte-meissen/kaserne-bohnitzsch-1.jpg rename to contao/files/odd/img/verlassene-orte-meissen/kaserne-bohnitzsch-1.jpg diff --git a/src/Resources/public/img/verlassene-orte-meissen/kaserne-bohnitzsch-2.jpg b/contao/files/odd/img/verlassene-orte-meissen/kaserne-bohnitzsch-2.jpg similarity index 100% rename from src/Resources/public/img/verlassene-orte-meissen/kaserne-bohnitzsch-2.jpg rename to contao/files/odd/img/verlassene-orte-meissen/kaserne-bohnitzsch-2.jpg diff --git a/src/Resources/public/img/verlassene-orte-meissen/keramikfabrik.jpg b/contao/files/odd/img/verlassene-orte-meissen/keramikfabrik.jpg similarity index 100% rename from src/Resources/public/img/verlassene-orte-meissen/keramikfabrik.jpg rename to contao/files/odd/img/verlassene-orte-meissen/keramikfabrik.jpg diff --git a/src/Resources/public/img/verlassene-orte-meissen/landkrankenhaus.jpg b/contao/files/odd/img/verlassene-orte-meissen/landkrankenhaus.jpg similarity index 100% rename from src/Resources/public/img/verlassene-orte-meissen/landkrankenhaus.jpg rename to contao/files/odd/img/verlassene-orte-meissen/landkrankenhaus.jpg diff --git a/src/Resources/public/img/verlassene-orte-meissen/rittergut-coelln.jpg b/contao/files/odd/img/verlassene-orte-meissen/rittergut-coelln.jpg similarity index 100% rename from src/Resources/public/img/verlassene-orte-meissen/rittergut-coelln.jpg rename to contao/files/odd/img/verlassene-orte-meissen/rittergut-coelln.jpg diff --git a/src/Resources/public/img/verlassene-orte-meissen/wohnhaus-goernische-gasse.jpg b/contao/files/odd/img/verlassene-orte-meissen/wohnhaus-goernische-gasse.jpg similarity index 100% rename from src/Resources/public/img/verlassene-orte-meissen/wohnhaus-goernische-gasse.jpg rename to contao/files/odd/img/verlassene-orte-meissen/wohnhaus-goernische-gasse.jpg diff --git a/src/Resources/public/img/verlassene-orte-meissen/wohnhaus-rosengasse-1.jpg b/contao/files/odd/img/verlassene-orte-meissen/wohnhaus-rosengasse-1.jpg similarity index 100% rename from src/Resources/public/img/verlassene-orte-meissen/wohnhaus-rosengasse-1.jpg rename to contao/files/odd/img/verlassene-orte-meissen/wohnhaus-rosengasse-1.jpg diff --git a/src/Resources/public/img/verlassene-orte-meissen/wohnhaus-rosengasse-2.jpg b/contao/files/odd/img/verlassene-orte-meissen/wohnhaus-rosengasse-2.jpg similarity index 100% rename from src/Resources/public/img/verlassene-orte-meissen/wohnhaus-rosengasse-2.jpg rename to contao/files/odd/img/verlassene-orte-meissen/wohnhaus-rosengasse-2.jpg diff --git a/src/Resources/public/img/verlassene-orte-meissen/wohnhaus-rosengasse-3.jpg b/contao/files/odd/img/verlassene-orte-meissen/wohnhaus-rosengasse-3.jpg similarity index 100% rename from src/Resources/public/img/verlassene-orte-meissen/wohnhaus-rosengasse-3.jpg rename to contao/files/odd/img/verlassene-orte-meissen/wohnhaus-rosengasse-3.jpg diff --git a/src/Resources/public/img/verlassene-orte-meissen/zuckerwarenfabrik-elbdom.jpg b/contao/files/odd/img/verlassene-orte-meissen/zuckerwarenfabrik-elbdom.jpg similarity index 100% rename from src/Resources/public/img/verlassene-orte-meissen/zuckerwarenfabrik-elbdom.jpg rename to contao/files/odd/img/verlassene-orte-meissen/zuckerwarenfabrik-elbdom.jpg diff --git a/src/Resources/public/scss/_custom_colors.scss b/contao/files/odd/scss/_custom_colors.scss similarity index 100% rename from src/Resources/public/scss/_custom_colors.scss rename to contao/files/odd/scss/_custom_colors.scss diff --git a/src/Resources/public/scss/_custom_variables.scss b/contao/files/odd/scss/_custom_variables.scss similarity index 100% rename from src/Resources/public/scss/_custom_variables.scss rename to contao/files/odd/scss/_custom_variables.scss diff --git a/src/Resources/public/scss/custom.scss b/contao/files/odd/scss/custom.scss similarity index 100% rename from src/Resources/public/scss/custom.scss rename to contao/files/odd/scss/custom.scss diff --git a/src/Resources/contao/languages/de/default.php b/contao/languages/de/default.php similarity index 100% rename from src/Resources/contao/languages/de/default.php rename to contao/languages/de/default.php diff --git a/contao/languages/de/modules.php b/contao/languages/de/modules.php new file mode 100644 index 0000000..a39fc70 --- /dev/null +++ b/contao/languages/de/modules.php @@ -0,0 +1,17 @@ +Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', 1, 0, 0xb2d63e05467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', 0, '', '', 1, 'a:2:{s:4:\"unit\";s:5:\"years\";s:5:\"value\";s:1:\"2\";}', 2530526400, 16, 0, '', 'default', 0, 0, '', 0, '', 0, 1, '', '', ''); +INSERT INTO `tl_calendar_events` (`id`, `pid`, `tstamp`, `title`, `featured`, `alias`, `author`, `addTime`, `startTime`, `endTime`, `startDate`, `endDate`, `pageTitle`, `robots`, `description`, `location`, `address`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `recurring`, `repeatEach`, `repeatEnd`, `recurrences`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `linkText`) VALUES (23, 4, 1552650339, 'Wohnhaus in der Rosengasse', 0, 'wohnhaus-in-der-rosengasse', 1, 0, 1538085600, 1538344799, 1538085600, 1538258400, '', '', NULL, '', '', '

Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', 1, 0, 0xb0b560c5467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', 0, '', '', 1, 'a:2:{s:4:\"unit\";s:5:\"years\";s:5:\"value\";s:1:\"1\";}', 2145913200, 0, 0, '', 'default', 0, 0, '', 0, '', 0, 1, '', '', ''); +INSERT INTO `tl_calendar_events` (`id`, `pid`, `tstamp`, `title`, `featured`, `alias`, `author`, `addTime`, `startTime`, `endTime`, `startDate`, `endDate`, `pageTitle`, `robots`, `description`, `location`, `address`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `recurring`, `repeatEach`, `repeatEnd`, `recurrences`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `linkText`) VALUES (24, 4, 1552646068, 'Wohnhaus in der Görnischen Gasse', 0, 'wohnhaus-in-der-görnischen-gasse', 1, 0, 1535148000, 1535320799, 1535148000, 1535234400, '', '', NULL, '', '', '

Dieses Wohnhaus im Stil der Renaissance entstand um 1580.

', 1, 0, 0xb525bf9c467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', 0, '', '', 1, 'a:2:{s:4:\"unit\";s:5:\"years\";s:5:\"value\";s:1:\"1\";}', 2145913200, 0, 0, '', 'default', 0, 0, '', 0, '', 0, 1, '', '', ''); +INSERT INTO `tl_calendar_events` (`id`, `pid`, `tstamp`, `title`, `featured`, `alias`, `author`, `addTime`, `startTime`, `endTime`, `startDate`, `endDate`, `pageTitle`, `robots`, `description`, `location`, `address`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `recurring`, `repeatEach`, `repeatEnd`, `recurrences`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `linkText`) VALUES (26, 4, 1552645990, 'Hamburger Hof', 0, 'hamburger-hof', 1, 0, 1543186800, 1545692399, 1543186800, 1545606000, '', '', NULL, '', '', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', 1, 0, 0xc942253a467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', 0, '', '', 1, 'a:2:{s:4:\"unit\";s:5:\"years\";s:5:\"value\";s:1:\"1\";}', 2145913200, 0, 0, '', 'default', 0, 0, '', 0, '', 0, 1, '', '', ''); +INSERT INTO `tl_calendar_events` (`id`, `pid`, `tstamp`, `title`, `featured`, `alias`, `author`, `addTime`, `startTime`, `endTime`, `startDate`, `endDate`, `pageTitle`, `robots`, `description`, `location`, `address`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `recurring`, `repeatEach`, `repeatEnd`, `recurrences`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `linkText`) VALUES (27, 4, 1552653008, 'Jahnhalle', 0, 'jahnhalle', 1, 0, 1514156400, 1514847599, 1514156400, 1514761200, '', '', NULL, '', '', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet.

', 1, 0, 0xc416cb81467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', 0, '', 'above', 1, 'a:2:{s:4:\"unit\";s:5:\"years\";s:5:\"value\";s:1:\"1\";}', 1767308399, 8, 0, NULL, 'default', 0, 0, '', 0, '', 0, 1, '', '', ''); +INSERT INTO `tl_calendar_events` (`id`, `pid`, `tstamp`, `title`, `featured`, `alias`, `author`, `addTime`, `startTime`, `endTime`, `startDate`, `endDate`, `pageTitle`, `robots`, `description`, `location`, `address`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `recurring`, `repeatEach`, `repeatEnd`, `recurrences`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `linkText`) VALUES (28, 4, 1552652995, 'Zuckerwarenfabrik Elbdom', 0, 'zuckerwarenfabrik-elbdom', 1, 1, 1517659200, 1517659200, 1517612400, NULL, '', '', NULL, '', '', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', 1, 0, 0xb0ad636c467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', 0, '', 'above', 1, 'a:2:{s:4:\"unit\";s:5:\"years\";s:5:\"value\";s:1:\"1\";}', 1770120000, 8, 0, NULL, 'default', 0, 0, '', 0, '', 0, 1, '', '', ''); + +INSERT INTO `tl_comments` (`id`, `tstamp`, `source`, `parent`, `date`, `name`, `email`, `website`, `member`, `comment`, `addReply`, `author`, `reply`, `published`, `ip`, `notified`, `notifiedReply`) VALUES (1, 1638439654, 'tl_news', 11, '1638439654', 'Max Mustermann', 'seibt@pdir.de', 'https://www.pdir.de', 0, '

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec.

', 0, 0, NULL, 1, '88.76.172.192', 1, 0); + +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (381, 'image', 131, 'tl_article', 272, 1488455906, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:52:\"einfaches Bild mit Überschrift und Bildunterschrift\";}', NULL, 0, 0, 0, 1, 0x512b86c6ff2011e6ba9f408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', 0, 'mit Klasse \"smaller\" würde das Bild nur 400px hoch sein', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_image_header', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (382, 'text', 153, 'tl_article', 384, 1511280898, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

h1-Überschrift

\n

h2-Überschrift

\n

h3-Überschrift

\n

h4-Überschrift

\n
h5-Überschrift
\n
h6-Überschrift
', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (399, 'text', 12, 'tl_news', 128, 1552650130, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Das Kasernengelände in Meißen-Bohnitzsch wurde 1936 angelegt und wurde ab Mai 1945 von der Sowjetunion genutzt. Unter anderem war das 7. Garde-Panzerregiment der GSSD hier untergebracht.

', 0, 0, 0, 0, 0x6c880b87002611e88700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"300\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 0, '', 'left', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (400, 'headline', 153, 'tl_article', 576, 1539351368, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:89:\"Eine Überschrift mit der Klasse \"bordered-heading\" ist linksbündig und mit Unterstrich\";}', '

Eine Überschrift mit der Klasse \"bordered-heading\"
ist linksbündig und mit Unterstrich

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (401, 'headline', 153, 'tl_article', 612, 1539351363, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:104:\"Eine Überschrift mit den Klassen \"bordered-heading text-sm-right\" ist rechtsbündig und mit Unterstrich\";}', '

Eine Überschrift mit den Klassen \"bordered-heading right\" ist rechtsbündig und mit Unterstrich

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'text-sm-right', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (402, 'text', 153, 'tl_article', 672, 1539351599, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

[class .col-12 .col-md-6] Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (403, 'text', 153, 'tl_article', 720, 1539351609, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

[class .col-12 .col-md-6] Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (404, 'text', 153, 'tl_article', 756, 1511282466, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (407, 'image', 118, 'tl_article', 128, 1554458686, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:24:\"Layout mit linker Spalte\";}', NULL, 0, 0, 0, 0, 0xc942253a467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', '', 0, 'sdsds', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'content_element/image/header_image_odd', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (414, 'module', 120, 'tl_article', 128, 1538492221, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 388, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (415, 'module', 146, 'tl_article', 128, 1539184159, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 386, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (420, 'module', 147, 'tl_article', 128, 1555073753, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 395, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (421, 'module', 147, 'tl_article', 64, 1644935706, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 398, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (422, 'module', 148, 'tl_article', 128, 1539331022, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 394, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (437, 'module', 120, 'tl_article', 512, 1538492248, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 387, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (438, 'module', 120, 'tl_article', 384, 1538492247, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 389, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (439, 'module', 147, 'tl_article', 256, 1555073754, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 396, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (440, 'module', 147, 'tl_article', 384, 1555073755, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 397, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (441, 'module', 147, 'tl_article', 96, 1555073751, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 399, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (460, 'list', 153, 'tl_article', 768, 1511280660, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:17:\"nummerierte Liste\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, 'ordered', 0x613a343a7b693a303b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a313b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a323b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a333b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b7d, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (461, 'list', 153, 'tl_article', 896, 1511280653, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:19:\"unnummerierte Liste\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, 'unordered', 0x613a343a7b693a303b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a313b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a323b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a333b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b7d, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (462, 'headline', 132, 'tl_article', 384, 1511280957, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:11:\"Style Guide\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (463, 'headline', 153, 'tl_article', 192, 1553878794, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:12:\"Textelemente\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (467, 'hyperlink', 153, 'tl_article', 1024, 1511284040, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:4:\"Link\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '{{link_url::90}}', '', 1, '', 'Normaler Link', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (468, 'toplink', 153, 'tl_article', 1152, 1511284059, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 1, '', 'Top-Link', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (471, 'accordionStart', 154, 'tl_article', 128, 1552651351, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', 'Stadterkunden in Meißen auf eine ganz besondere Art', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (472, 'text', 154, 'tl_article', 256, 1552651360, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (473, 'accordionStop', 154, 'tl_article', 384, 1511284664, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (474, 'accordionStart', 154, 'tl_article', 512, 1552651391, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', 'Erinnerungen', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (475, 'text', 154, 'tl_article', 640, 1552651371, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (476, 'accordionStop', 154, 'tl_article', 768, 1511284674, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (477, 'accordionStart', 154, 'tl_article', 896, 1552651399, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', 'Botschaften aus der Vergangenheit', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (478, 'text', 154, 'tl_article', 1024, 1552651380, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (479, 'accordionStop', 154, 'tl_article', 1152, 1511284683, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (480, 'headline', 154, 'tl_article', 64, 1553878812, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:9:\"Akkordion\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (504, 'headline', 156, 'tl_article', 128, 1553878872, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:14:\"Media-Elemente\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (506, 'gallery', 156, 'tl_article', 512, 1554464836, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Dreispaltig\";}', NULL, 0, 0, 0, 0, NULL, '', '', 'a:3:{i:0;s:3:\"510\";i:1;s:3:\"300\";i:2;s:4:\"crop\";}', '', 1, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, 0x613a363a7b693a303b733a31363a22c09740c7467611e9a91c408d5c22fa41223b693a313b733a31363a22c433b88f467611e9a91c408d5c22fa41223b693a323b733a31363a22b92fb24e467611e9a91c408d5c22fa41223b693a333b733a31363a22c942253a467611e9a91c408d5c22fa41223b693a343b733a31363a22d285349b467611e9a91c408d5c22fa41223b693a353b733a31363a22c416cb81467611e9a91c408d5c22fa41223b7d, 0, 3, 0, 0, 'custom', 0, 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (507, 'youtube', 156, 'tl_article', 1792, 1555056806, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, 'mfo0iHDrBN8', '', NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (509, 'headline', 156, 'tl_article', 256, 1539353264, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:24:\"Galerie (Contao)\";}', '

Die Anordnung der Bilder passt sich je nachdem wie viele Spalten ausgewählt sind automatisch an.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (556, 'headline', 169, 'tl_article', 128, 1553878919, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:20:\"Weitere ODD-Elemente\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (564, 'headline', 169, 'tl_article', 256, 1516980271, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:11:\"Content Box\";}', '

Die Content Box lässt sich über das Inhaltselement mateContentBox an jeder beliebigen Stelle platzieren. Es kann eine Überschrift, ein Text sowie ein Link/Linktext angegeben werden. Breite und Farben der Boxen werden durch das Vergeben von CSS-Klassen bzw. über die CSS-Datei angepasst.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (565, 'headline', 169, 'tl_article', 640, 1516980281, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:9:\"Teaserbox\";}', '

Die Teaserbox lässt sich über das Inhaltselement mateTeaserBox an jeder beliebigen Stelle platzieren. Es kann ein Bild, eine Überschrift, ein Text sowie ein Link/Linktext angegeben werden. Die Breite der Boxen kann durch das Vergeben von CSS-Klassen angepasst werden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (567, 'image', 170, 'tl_article', 128, 1552650880, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:25:\"Layout mit rechter Spalte\";}', NULL, 0, 0, 0, 0, 0xc09740c7467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'content_element/image/header_image_odd', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (571, 'table', 153, 'tl_article', 1408, 1539352121, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:30:\"Tabelle mit Elementtyp Tabelle\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', '', NULL, '', NULL, 'a:5:{i:0;a:3:{i:0;s:6:\"Head 1\";i:1;s:6:\"Head 2\";i:2;s:6:\"Head 3\";}i:1;a:3:{i:0;s:8:\"Column 1\";i:1;s:8:\"Column 2\";i:2;s:8:\"Column 3\";}i:2;a:3:{i:0;s:8:\"Column 1\";i:1;s:8:\"Column 2\";i:2;s:8:\"Column 3\";}i:3;a:3:{i:0;s:8:\"Column 1\";i:1;s:8:\"Column 2\";i:2;s:8:\"Column 3\";}i:4;a:3:{i:0;s:8:\"Column 1\";i:1;s:8:\"Column 2\";i:2;s:8:\"Column 3\";}}', '', 1, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (572, 'code', 153, 'tl_article', 1536, 1511528123, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:4:\"Code\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', 'JavaScript', 'sourceText', '', '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (573, 'markdown', 153, 'tl_article', 1664, 1511528199, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', '## Markdown\n\nSince Contao 3.3.x Contao ships with the markdown content element. \n\n##### What is Markdown?\n\n> Markdown is a markup language with plain text formatting syntax designed so that it can be converted to HTML and many other formats using a tool by the same name.', '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:8:\"markdown\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (574, 'headline', 171, 'tl_article', 128, 1553878882, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:17:\"Download-Elemente\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (575, 'download', 171, 'tl_article', 256, 1552651865, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, 0, 0, 0, 0, 0xb0ad636c467611e9a91c408d5c22fa41, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 1, '', 'Einzelnes Download-Element', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (576, 'downloads', 171, 'tl_article', 384, 1552651907, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:9:\"Downloads\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, 0x613a363a7b693a303b733a31363a22bd8cb98b467611e9a91c408d5c22fa41223b693a313b733a31363a22d285349b467611e9a91c408d5c22fa41223b693a323b733a31363a22c416cb81467611e9a91c408d5c22fa41223b693a333b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b7d, 0, 4, 0, 0, 'custom', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (577, 'headline', 120, 'tl_article', 64, 1553875697, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:4:\"News\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (578, 'headline', 147, 'tl_article', 16, 1553877170, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:6:\"Events\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (580, 'headline', 172, 'tl_article', 128, 1553877182, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:10:\"Navigation\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (589, 'headline', 173, 'tl_article', 128, 1553877192, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:4:\"User\";}', '

Test-Zugangsdaten:

\n

User: mate-user
Passwort: mate theme

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (590, 'module', 173, 'tl_article', 256, 1539335021, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 403, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (592, 'module', 173, 'tl_article', 384, 1539335052, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 407, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (595, 'module', 173, 'tl_article', 304, 1539335029, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 404, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (596, 'module', 173, 'tl_article', 312, 1539335038, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 405, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (597, 'module', 173, 'tl_article', 316, 1539335046, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 406, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (599, 'text', 173, 'tl_article', 192, 1516703706, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:17:\"Test-Zugangsdaten\";}', '

Username: j.smith
Password: johnsmith

\n

Username: d.evans
Password: donnaevans

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (600, 'text', 177, 'tl_article', 128, 1525853618, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:9:\"Impressum\";}', '

Verantwortlicher Diensteanbieter im Sinne von § 5 Telemediengesetz (TMG),

\n

Inhaber der Domain www.example-domain.de

\n

Firma
Musterstraße 12
00000 Musterhausen

\n

Telefon: +49 (0)1234 / 5678910
E-Mail: info@example.de

\n

 

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (601, 'headline', 176, 'tl_article', 128, 1553877228, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:11:\"Anwendungen\";}', '

Für das, wie in den folgenden Formularen, dargestellte Upload-Feld, muss das Template form_mate_upload im Formulargenerator bei dem jeweiligen Element ausgewählt werden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (602, 'form', 176, 'tl_article', 256, 1539346665, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:30:\"Formular (tabellenlos)\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 6, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (604, 'text', 178, 'tl_article', 128, 1511778265, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:30:\"Ihre Anfrage wurde übertragen\";}', '

Ihre Anfrage wurde erfolgreich versendet und wir werden uns in Kürze mit Ihnen in Verbindung setzen.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (605, 'headline', 174, 'tl_article', 128, 1553877205, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:10:\"Newsletter\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (610, 'module', 179, 'tl_article', 128, 1539338156, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 410, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (611, 'headline', 175, 'tl_article', 128, 1553877216, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:3:\"FAQ\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (612, 'module', 175, 'tl_article', 256, 1539344503, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 413, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (613, 'module', 175, 'tl_article', 384, 1539344513, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 414, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (614, 'module', 180, 'tl_article', 128, 1539344535, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 412, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (616, 'module', 181, 'tl_article', 128, 1539347874, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 415, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (617, 'headline', 181, 'tl_article', 64, 1553877236, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:5:\"Suche\";}', '

Im Suchmaschinen-Modul muss das Template search_mate ausgewählt werden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (625, 'headline', 120, 'tl_article', 96, 1516979732, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:27:\"News mit Bildern und Teaser\";}', '

Für diese Newsliste muss das Template news_mate_latest ausgewählt werden. Im Modul der Detailansicht muss das Template news_mate_full ausgewählt werden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (626, 'headline', 120, 'tl_article', 256, 1516979739, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:16:\"News ohne Bilder\";}', '

Für diese Newsliste muss das Template news_mate_short ausgewählt werden. Im Modul der Detailansicht muss das Template news_mate_full ausgewählt werden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (627, 'headline', 120, 'tl_article', 448, 1516979744, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:18:\"einfache Newsliste\";}', '

Für die einfache Newsliste wird das Standard-Template news_simple verwendet. Im Modul der Detailansicht muss das Template news_mate_full ausgewählt werden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (628, 'headline', 147, 'tl_article', 112, 1555073752, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:22:\"Eventliste mit Bildern\";}', '

Für die Eventliste mit Bilder muss das Template event_mate_teaser ausgewählt werden. In der Detailansicht muss das Template event_mate_full ausgewählt sein.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (629, 'headline', 147, 'tl_article', 192, 1555073753, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:22:\"Eventliste ohne Bilder\";}', '

Für die Eventliste ohne Bildern muss das Template event_mate_list ausgewählt werden. In der Detailansicht muss das Template event_mate_full ausgewählt sein.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (630, 'headline', 147, 'tl_article', 320, 1555073754, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:19:\"einfache Eventliste\";}', '

Für die einfache Eventliste wird das Standard-Template event_upcoming verwendet. In der Detailansicht muss das Template event_mate_full ausgewählt sein.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (639, 'text', 172, 'tl_article', 224, 1539334631, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:22:\"Unterseiten-Navigation\";}', '

Navigations-Modul mit der Klasse subnav

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (654, 'ct_wrapperStart', 153, 'tl_article', 648, 1540221151, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 'Inhaltscontainer mit Klasse \"row\"', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (655, 'ct_wrapperStop', 153, 'tl_article', 726, 1540221157, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, '', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 0, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (662, 'text', 186, 'tl_article', 128, 1516628515, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:24:\"403 - Zugriff verweigert\";}', '

Auf die von Ihnen angeforderte Seite haben Sie leider keinen Zugriff.

\n

Sie könnten stattdessen zur Startseite navigieren oder uns kontaktieren.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (663, 'text', 185, 'tl_article', 128, 1516628505, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:26:\"404 - Seite nicht gefunden\";}', '

Die von Ihnen angeforderte Seite wurde leider nicht gefunden. Vielleicht haben Sie sich vertippt oder die Seite existiert nicht mehr.

\n

Sie könnten stattdessen zur Startseite navigieren oder uns kontaktieren.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (664, 'headline', 156, 'tl_article', 1664, 1516980207, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"YouTube\";}', '

Damit sich das Video auch auf verschiedenen Endgeräten responsiv verhält, muss bei dem Elementtyp YouTube das Template ce_youtube_mate ausgewählt werden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (680, 'text', 22, 'tl_calendar_events', 128, 1552650379, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, '', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 0, 0, 0, '', 0, '', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (681, 'text', 23, 'tl_calendar_events', 128, 1552650346, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, '', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 0, 0, 0, '', 0, '', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (682, 'text', 24, 'tl_calendar_events', 128, 1552650363, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Dieses Wohnhaus im Stil der Renaissance entstand um 1580.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, '', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 0, 0, 0, '', 0, '', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (684, 'text', 26, 'tl_calendar_events', 128, 1552650329, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', 0, 0, 0, 0, 0xd5b2a583028211e88700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"400\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, '', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 0, 0, 0, '', 0, '', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (688, 'text', 10, 'tl_news', 128, 1552650042, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Dieses Wohnhaus im Stil der Renaissance entstand um 1580. Noch heute sind aus dieser Zeit zahlreiche Schmuckelemente am Haus erhalten: Tür- und Fenstergewände, Konsolsteine und Deckengewölbe.

', 0, 0, 0, 0, 0xde74085cfd2011e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"500\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (689, 'text', 11, 'tl_news', 128, 1552650025, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', 0, 0, 0, 0, 0xa09827bfcb5d11e79a22408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 0, '', 'left', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (701, 'text', 27, 'tl_calendar_events', 128, 1552650410, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet.

', 0, 0, 0, 0, 0xd05728a0028211e88700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"500\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 0, '', 'left', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (702, 'text', 28, 'tl_calendar_events', 128, 1552650395, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', 0, 0, 0, 0, 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"300\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 0, '', 'right', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (706, 'text', 23, 'tl_news', 32, 1552650056, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Die Ziegelei am Roten Haus war die letzte ihrer Art in Meißen, sie war nach fast 140 Jahren Produktion 1993 geschlossen worden.

', 0, 0, 0, 0, 0xa09827bfcb5d11e79a22408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 0, '', 'left', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (707, 'text', 24, 'tl_news', 128, 1552650073, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Das ehemalige Landkrankenhaus ist seit dem Neubau der Elblandklinik in Meißen-Bohnitzsch ungenutzt.

', 0, 0, 0, 0, 0x7009c414028811e88700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"700\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 1, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (708, 'text', 25, 'tl_news', 32, 1552650084, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Zum \"Elbdom\"-Areal gehörte in den letzten 20 Jahren auch das Grundstück der Unternehmerfamilie Clemens Kurtz in der Dresdner Straße 19.

', 0, 0, 0, 0, 0xbeaf67b1028211e88700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"400\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 0, '', 'left', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (709, 'text', 26, 'tl_news', 128, 1552650101, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (721, 'headline', 159, 'tl_article', 128, 1552650587, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe. 929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (724, 'module', 159, 'tl_article', 1280, 1539349367, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 391, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (725, 'headline', 159, 'tl_article', 1152, 1517229796, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Letzte Blogeinträge\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (726, 'text', 159, 'tl_article', 256, 1552650787, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', 0, 0, 0, 0, 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 1, '', 'right', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (735, 'module', 190, 'tl_article', 448, 1539341311, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 409, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (743, 'ct_wrapperStart', 159, 'tl_article', 384, 1540220710, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 'Inhaltscontainer mit Klasse \"row\"', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (744, 'ct_wrapperStop', 159, 'tl_article', 1024, 1540220716, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, '', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 0, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (745, 'text', 159, 'tl_article', 512, 1552650706, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (746, 'text', 159, 'tl_article', 640, 1552650714, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (747, 'text', 159, 'tl_article', 768, 1552650650, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (748, 'text', 159, 'tl_article', 896, 1552650692, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (749, 'headline', 159, 'tl_article', 320, 1552650561, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (783, 'image', 193, 'tl_article', 128, 1555060980, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:20:\"Dreispaltiges Layout\";}', NULL, 0, 0, 0, 0, 0xae24b6cc467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'content_element/image/header_image_odd', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (784, 'image', 194, 'tl_article', 128, 1553878074, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:19:\"Einspaltiges Layout\";}', NULL, 0, 0, 0, 0, 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'content_element/image/header_image_odd', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (792, 'form', 184, 'tl_article', 124, 1555068392, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 8, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (797, 'text', 251, 'tl_article', 128, 1555069654, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:12:\"Kontaktdaten\";}', '

Mustermann GmbH
Musterstraße 12
00000 Musterhausen

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (803, 'headline', 184, 'tl_article', 64, 1555068611, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:30:\"Bleiben Sie mit uns in Kontakt\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (807, 'hyperlink', 153, 'tl_article', 1280, 1517820154, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '#', '', 1, '', 'Button', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"btn\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (810, 'image', 145, 'tl_article', 128, 1644834392, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, 0, 0, 0, 1, 0xc96d0cf7472811e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"25\";}', '{{link_url::90|urlattr}}', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (812, 'ct_featureElement', 182, 'tl_article', 256, 1553852915, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

info@example.org

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:5:\"email\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', 'far fa-envelope', NULL, '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (813, 'ct_wrapperStart', 182, 'tl_article', 384, 1540216548, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:12:\"social-media\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (814, 'ct_wrapperStop', 182, 'tl_article', 512, 1540216554, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (815, 'ct_featureElement', 182, 'tl_article', 448, 1540306869, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Facebook

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', 'fab fa-facebook-f', 'https://www.facebook.com/', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (816, 'ct_featureElement', 182, 'tl_article', 480, 1540306883, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Twitter

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', 'fab fa-twitter', 'https://twitter.com/', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (817, 'ct_featureElement', 182, 'tl_article', 496, 1540306897, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Instagram

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', 'fab fa-instagram', 'https://www.instagram.com/', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (818, 'ct_featureElement', 182, 'tl_article', 504, 1540306925, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Pinterest

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', 'fab fa-pinterest-p', 'https://www.pinterest.de/', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (819, 'ct_featureElement', 182, 'tl_article', 508, 1540306943, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Linked In

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', 'fab fa-linkedin-in', 'https://de.linkedin.com/', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (820, 'text', 136, 'tl_article', 128, 1538490759, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Adressdaten\";}', '

Musterfirma GmbH
Musterstraße 127
01234 Musterstadt

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (821, 'ct_featureElement', 137, 'tl_article', 128, 1553270517, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

+ 49 (0) 0123 4567890

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', 'fas fa-phone', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (822, 'ct_featureElement', 137, 'tl_article', 256, 1540216645, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

+ 49 (0) 0123 456789

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', 'fas fa-mobile', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (823, 'ct_featureElement', 137, 'tl_article', 384, 1540216655, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

+ 49 (0) 0123 4567891

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', 'fas fa-fax', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (824, 'ct_featureElement', 137, 'tl_article', 512, 1540563691, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

info@example.org

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', 'far fa-envelope', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (825, 'headline', 137, 'tl_article', 64, 1538491017, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:12:\"Kontaktdaten\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (826, 'ct_featureElement', 138, 'tl_article', 128, 1540307110, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Facebook

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', 'fab fa-facebook-f', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (827, 'ct_featureElement', 138, 'tl_article', 256, 1540307120, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Twitter

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', 'fab fa-twitter', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (828, 'ct_featureElement', 138, 'tl_article', 384, 1540307160, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Instagram

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', 'fab fa-instagram', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (829, 'ct_featureElement', 138, 'tl_article', 512, 1540307177, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Pinterest

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', 'fab fa-pinterest-p', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (830, 'ct_featureElement', 138, 'tl_article', 640, 1540307187, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Linked In

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', 'fab fa-linkedin-in', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (831, 'headline', 138, 'tl_article', 64, 1538491124, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:12:\"Social Media\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (832, 'headline', 139, 'tl_article', 128, 1538491199, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:9:\"Odd Theme\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (833, 'module', 139, 'tl_article', 256, 1538491192, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 373, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (834, 'text', 140, 'tl_article', 128, 1560846799, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

© Firma / {{date::Y}} / Odd Theme by montequesto

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (838, 'sliderStart', 117, 'tl_article', 128, 1553851804, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 1, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (839, 'sliderStop', 117, 'tl_article', 256, 1539088811, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (840, 'sliderElement', 117, 'tl_article', 192, 1552657173, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Dank der Saalkapazitäten fanden in dem traditionsreichen Haus zahlreiche Großveranstaltungen statt. Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', 1, 0, 0, 0, 0xc942253a467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '{{event_url::26}}', 'Mehr dazu', 'Kultur & Freizeit', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (841, 'sliderElement', 117, 'tl_article', 224, 1552657262, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Keramikfabrik\";}', '

Bei der Produktion von Kachelöfen, Wandplatten, Porzellanen und Schamotte war Meißen um 1900 führend in Deutschland. Die für Kachelöfen entwickelte Meißner Patentkachel war wohl in den meisten deutschen Wohnzimmern zu finden.

', 1, 0, 0, 0, 0xae24b6cc467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '{{link_url::120}}', 'Mehr dazu', 'Industrie', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (842, 'sliderElement', 117, 'tl_article', 208, 1552657181, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', 1, 0, 0, 0, 0xc416cb81467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '{{event_url::27}}', 'Mehr erfahren', 'Sport', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (843, 'sliderElement', 117, 'tl_article', 248, 1552657268, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:29:\"E-Werk in der Brauhausstraße\";}', '

Das ehemalige Elektrizitätswerk an der Brauhausstraße ging 1911 in Betrieb und lieferte Strom für die Meißner Innenstadt. Nach 1990 wurde das E-Werk stillgelegt und 2004 wurde das Kesselhaus im hinteren Grundstücksbereich abgerissen.

', 1, 0, 0, 0, 0xb92fb24e467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '{{link_url::121}}', 'Weiterlesen', 'Industrie', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (844, 'sliderElement', 117, 'tl_article', 216, 1552657188, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:21:\"Kaserne in Bohnitzsch\";}', '

Das Kasernengelände in Meißen-Bohnitzsch wurde 1936 angelegt und wurde ab Mai 1945 von der Sowjetunion genutzt. Unter anderem war das 7. Garde-Panzerregiment der GSSD hier untergebracht.

', 1, 0, 0, 0, 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '{{news_url::12}}', 'Mehr dazu', 'Militär', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (845, 'headline', 197, 'tl_article', 128, 1552643659, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:28:\"bordered-heading text-center\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (846, 'ct_wrapperStart', 197, 'tl_article', 256, 1540220465, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 'Inhaltscontainer mit Klasse \"row\"', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (847, 'ct_wrapperStop', 197, 'tl_article', 384, 1540220471, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (848, 'text', 197, 'tl_article', 320, 1552644010, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (849, 'text', 197, 'tl_article', 352, 1552643989, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (850, 'module', 198, 'tl_article', 128, 1539096876, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Platzhalter für Newsboxen

\n

orem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 391, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (851, 'ct_wrapperStart', 199, 'tl_article', 128, 1540215730, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Platzhalter für Teaserboxen

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 'Inhaltscontainer mit Klasse \"row\"', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (853, 'ct_wrapperStop', 199, 'tl_article', 256, 1540215704, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (855, 'ct_teaserBox', 199, 'tl_article', 224, 1554457312, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:22:\"Ziegelei am Roten Haus\";}', '

Die Spezialität der Ziegelei war zu DDR-Zeiten die Herstellung von Hochlochziegeln - leichten, großformatigen Ziegeln für den Wohnungsbau.

', 1, 0, 0, 0, 0xc433b88f467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-4', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '{{news_url::23}}', 'Mehr dazu', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (856, 'ct_teaserBox', 199, 'tl_article', 240, 1554457318, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', 1, 0, 0, 0, 0xb0ad636c467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-4', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '{{event_url::28}}', 'Mehr dazu', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (859, 'headline', 198, 'tl_article', 64, 1552662465, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:9:\"Aktuelles\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'text-center', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (861, 'module', 201, 'tl_article', 128, 1539184642, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 393, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (862, 'module', 202, 'tl_article', 128, 1539331252, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 400, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (863, 'module', 172, 'tl_article', 352, 1539334592, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 384, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (864, 'text', 203, 'tl_article', 128, 1539339890, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Vielen Dank!\";}', '

Vielen Dank für die Abonnierung unseres Newsletters. Zur Aktivierung Ihres Abonnements ist es erforderlich, dass Sie den Aktivierungslink in der zugesandten E-Mail anklicken.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:11:\"text-center\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (866, 'module', 189, 'tl_article', 128, 1539341275, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 408, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (873, 'hyperlink', 174, 'tl_article', 256, 1539343980, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '{{link_url::144}}', '', 1, '', 'Newsletter abonnieren', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (874, 'hyperlink', 174, 'tl_article', 384, 1539343998, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '{{link_url::145}}', '', 1, '', 'Newsletter abbestellen', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (876, 'headline', 153, 'tl_article', 630, 1553879193, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:101:\"Eine Überschrift mit den Klassen \"bordered-heading text-sm-center\" ist zentriert und mit Unterstrich\";}', '

Eine Überschrift mit den Klassen \"bordered-heading right\" ist rechtsbündig und mit Unterstrich

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'text-sm-center', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (877, 'text', 153, 'tl_article', 1472, 1539352288, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:27:\"Tabelle mit Elementtyp Text\";}', '\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Column 1Column 2Column 3
Column 1Column 2Column 3
Column 1Column 2Column 3
Verbundene Zeilen
', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (885, 'ct_contentBox', 209, 'tl_article', 256, 1554457368, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Dank der Saalkapazitäten fanden in dem traditionsreichen Haus zahlreiche Großveranstaltungen statt. Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-3\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '{{event_url::26}}', 'Mehr dazu', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (886, 'ct_wrapperStart', 209, 'tl_article', 128, 1540222509, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Platzhalter für Teaserboxen

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"row no-margin\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 'Inhaltscontainer mit der Klasse \'row\'', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (887, 'ct_wrapperStop', 209, 'tl_article', 640, 1540215843, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (889, 'ct_teaserBox', 199, 'tl_article', 160, 1554457306, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:19:\"Das Landkrankenhaus\";}', '

Das ehemalige Landkrankenhaus ist seit dem Neubau der Elblandklinik in Meißen-Bohnitzsch ungenutzt.

', 1, 0, 0, 0, 0xce7c80c2467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '{{news_url::24}}', 'Mehr dazu', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (890, 'ct_contentBox', 209, 'tl_article', 384, 1552652907, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Keramikfabrik\";}', '

Bei der Produktion von Kachelöfen, Wandplatten, Porzellanen und Schamotte war Meißen um 1900 führend in Deutschland. Die für Kachelöfen entwickelte Meißner Patentkachel war wohl in den meisten deutschen Wohnzimmern zu finden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-3\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '{{link_url::120}}', 'Mehr dazu', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (892, 'ct_featureElement', 182, 'tl_article', 64, 1553852907, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

+ 49 (0) 123 45678

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:5:\"phone\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', 'fas fa-phone', NULL, '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (893, 'headline', 169, 'tl_article', 768, 1553879082, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:22:\"Preis-Tabelle 3 stufig\";}', '

Beispiel 1:

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (894, 'ct_priceBox', 169, 'tl_article', 896, 1540307443, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"Paket A\";}', '

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '99,99 €', 'pro Monat, zzgl. MwSt.', '{{link_url::90}}', 'Jetzt bestellen', '{{link_url::90}}', 'Mehr Infos', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (895, 'ct_wrapperStart', 169, 'tl_article', 832, 1540301947, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"row no-margin\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 'Inhaltscontainer mit Klasse \"row\"', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (896, 'ct_wrapperStop', 169, 'tl_article', 1024, 1540217731, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (897, 'ct_priceBox', 169, 'tl_article', 960, 1540307450, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"Paket B\";}', '

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '249,99 €', 'pro Monat, zzgl. MwSt.', '90', 'Jetzt bestellen', '90', 'Mehr Infos', 'Am beliebtesten', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (898, 'ct_priceBox', 169, 'tl_article', 992, 1540219169, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"Paket C\";}', '

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '49,99 €', 'pro Monat, zzgl. MwSt.', '90', 'Jetzt bestellen', '90', 'Mehr Infos', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (899, 'headline', 169, 'tl_article', 1152, 1540219594, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:19:\"Einfache Inhaltsbox\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (900, 'text', 169, 'tl_article', 1280, 1552652309, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:24:\"Stadterkunden in Meißen\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (901, 'ct_wrapperStart', 169, 'tl_article', 1216, 1540219647, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 'Inhaltscontainer mit Klasse \"row\"', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (902, 'ct_wrapperStop', 169, 'tl_article', 1408, 1540219653, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (903, 'text', 169, 'tl_article', 1344, 1552652333, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:12:\"Erinnerungen\";}', '

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (904, 'ct_wrapperStart', 169, 'tl_article', 704, 1540219734, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Platzhalter für Teaserboxen

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 'Inhaltscontainer mit Klasse \"row\"', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (905, 'ct_teaserBox', 169, 'tl_article', 736, 1552652219, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:19:\"Wohnhaus Rosengasse\";}', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', 1, 0, 0, 0, 0xb81fbc97467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '90', 'Mehr dazu', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (906, 'ct_teaserBox', 169, 'tl_article', 752, 1552652238, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Keramikfabrik\";}', '

Bei der Produktion von Kachelöfen, Wandplatten, Porzellanen und Schamotte war Meißen um 1900 führend in Deutschland. Die für Kachelöfen entwickelte Meißner Patentkachel war wohl in den meisten deutschen Wohnzimmern zu finden.

', 1, 0, 0, 0, 0xae24b6cc467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-4', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '90', 'Mehr dazu', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (907, 'ct_teaserBox', 169, 'tl_article', 760, 1552652257, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', 1, 0, 0, 0, 0xc416cb81467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-4', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '90', 'Mehr dazu', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (908, 'ct_wrapperStop', 169, 'tl_article', 764, 1540219734, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (909, 'ct_wrapperStart', 169, 'tl_article', 448, 1540219772, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie)', '

Platzhalter für Teaserboxen

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 'Inhaltscontainer mit der Klasse \'row\'', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (910, 'ct_contentBox', 169, 'tl_article', 544, 1552652156, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-4\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '90', 'Mehr dazu', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (911, 'ct_contentBox', 169, 'tl_article', 592, 1552652166, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Keramikfabrik\";}', '

Bei der Produktion von Kachelöfen, Wandplatten, Porzellanen und Schamotte war Meißen um 1900 führend in Deutschland. Die für Kachelöfen entwickelte Meißner Patentkachel war wohl in den meisten deutschen Wohnzimmern zu finden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-4\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '90', 'Mehr dazu', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (912, 'ct_contentBox', 169, 'tl_article', 616, 1552652180, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:19:\"Wohnhaus Rosengasse\";}', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-4\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '90', 'Mehr dazu', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (913, 'ct_wrapperStop', 169, 'tl_article', 628, 1540219772, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (914, 'ct_contentBox', 209, 'tl_article', 512, 1554457380, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:19:\"Wohnhaus Rosengasse\";}', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-3\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '{{news_url::11}}', 'Mehr erfahren', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (915, 'ct_contentBox', 209, 'tl_article', 352, 1552652897, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-3\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '{{event_url::27}}', 'Mehr dazu', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (917, 'headline', 169, 'tl_article', 1088, 1553879106, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:21:\"Preistabelle 2 stufig\";}', '

Beispiel 1:

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (918, 'ct_wrapperStart', 169, 'tl_article', 1120, 1540301976, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"row no-margin\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 'Inhaltscontainer mit Klasse \"row\"', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (919, 'ct_priceBox', 169, 'tl_article', 1136, 1540302061, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"Paket A\";}', '

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-6\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '99,99 €', 'pro Monat, zzgl. MwSt.', '90', 'Jetzt bestellen', '90', 'Mehr Infos', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (920, 'ct_priceBox', 169, 'tl_article', 1144, 1540302044, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"Paket B\";}', '

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-6\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '249,99 €', 'pro Monat, zzgl. MwSt.', '90', 'Jetzt bestellen', '90', 'Mehr Infos', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (922, 'ct_wrapperStop', 169, 'tl_article', 1150, 1540301976, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (927, 'ct_wrapperStart', 210, 'tl_article', 256, 1540306574, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 'Inhaltscontainer mit Klasse \"row\"', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (928, 'text', 210, 'tl_article', 320, 1553869218, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Diese Räumlichkeiten sind Zeitdokumente. Ihre Ablichtung vielleicht die letzte vor dem endgültigen Abriss oder vor einer Sanierung, die alle Spuren der Vergangenheit verwischen werden. Sie wurden sorgfältig dokumentiert, ohne am Ort etwas zu verändern. Da die Fotografien grundsätzlich im - oft sehr spärlichen - natürlichen Licht vor Ort aufgenommen wurden, kam meist die HDR-Technik zum Einsatz, die

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (929, 'text', 210, 'tl_article', 352, 1553869224, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Abbildungen mit hocher Farbintensität und fast malerischem Flair hervorbringt. Die Bilder entstanden im Einverständnis der jeweiligen Grundstückseigentümer.
Der Autor dankt allen, die ihm den Besuch dieser verlassenen Orte ermöglichten und der Veröffentlichung der dort entstandenen Aufnahmen zustimmten.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (930, 'ct_wrapperStop', 210, 'tl_article', 384, 1540306574, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (931, 'sliderElement', 117, 'tl_article', 252, 1552657274, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"VEB Ziegelwerk Rotes Haus\";}', '

Die Ziegelei am Roten Haus war die letzte ihrer Art in Meißen, sie war nach fast 140 Jahren Produktion 1993 geschlossen worden.

', 1, 0, 0, 0, 0xc09740c7467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '{{news_url::23}}', 'Weiterlesen', 'Industrie', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (933, 'text', 210, 'tl_article', 512, 1553875181, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:5:\"quote\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (934, 'headline', 160, 'tl_article', 128, 1552650990, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe. 929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (935, 'text', 160, 'tl_article', 256, 1552650983, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', 0, 0, 0, 0, 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 1, '', 'right', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (936, 'headline', 160, 'tl_article', 384, 1552650995, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (937, 'ct_wrapperStart', 160, 'tl_article', 512, 1552650983, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 'Inhaltscontainer mit Klasse \"row\"', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (938, 'text', 160, 'tl_article', 640, 1552651001, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (939, 'text', 160, 'tl_article', 768, 1552651007, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (940, 'text', 160, 'tl_article', 896, 1552651013, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (941, 'text', 160, 'tl_article', 1024, 1552651018, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (942, 'ct_wrapperStop', 160, 'tl_article', 1152, 1552650983, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, '', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 0, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (943, 'headline', 160, 'tl_article', 1280, 1552651024, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Letzte Blogeinträge\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (944, 'module', 160, 'tl_article', 1408, 1552650983, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 391, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (945, 'headline', 161, 'tl_article', 128, 1552651039, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe. 929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (946, 'text', 161, 'tl_article', 256, 1552651034, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', 0, 0, 0, 0, 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 1, '', 'right', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (947, 'headline', 161, 'tl_article', 384, 1552651047, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (948, 'ct_wrapperStart', 161, 'tl_article', 512, 1552651034, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 'Inhaltscontainer mit Klasse \"row\"', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (949, 'text', 161, 'tl_article', 640, 1552651092, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (950, 'text', 161, 'tl_article', 768, 1552651098, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (951, 'text', 161, 'tl_article', 896, 1552651105, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (952, 'text', 161, 'tl_article', 1024, 1552651111, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (953, 'ct_wrapperStop', 161, 'tl_article', 1152, 1552651034, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, '', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 0, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (954, 'headline', 161, 'tl_article', 1280, 1552651122, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Letzte Blogeinträge\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (955, 'module', 161, 'tl_article', 1408, 1552651034, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 391, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (956, 'headline', 165, 'tl_article', 128, 1552651144, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe. 929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (957, 'text', 165, 'tl_article', 256, 1552651140, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', 0, 0, 0, 0, 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 1, '', 'right', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (958, 'headline', 165, 'tl_article', 384, 1552651150, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (959, 'ct_wrapperStart', 165, 'tl_article', 512, 1552651140, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 'Inhaltscontainer mit Klasse \"row\"', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (960, 'text', 165, 'tl_article', 640, 1552651155, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (961, 'text', 165, 'tl_article', 768, 1552651161, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (962, 'text', 165, 'tl_article', 896, 1552651166, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (963, 'text', 165, 'tl_article', 1024, 1552651172, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (964, 'ct_wrapperStop', 165, 'tl_article', 1152, 1552651140, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, '', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 0, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (965, 'headline', 165, 'tl_article', 1280, 1552651187, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Letzte Blogeinträge\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (966, 'module', 165, 'tl_article', 1408, 1552651140, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 391, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (978, 'gallery', 156, 'tl_article', 640, 1554464808, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Vierspaltig\";}', NULL, 0, 0, 0, 0, NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', '', 1, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, 0x613a343a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b7d, 0, 4, 0, 0, 'custom', 0, 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (986, 'ct_featureElement', 169, 'tl_article', 1536, 1552653271, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', 'fas fa-home', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (987, 'ct_featureElement', 169, 'tl_article', 1664, 1552653413, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', 'fas fa-check', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (988, 'headline', 169, 'tl_article', 1472, 1552653438, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:14:\"Text mit Icons\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (989, 'headline', 199, 'tl_article', 64, 1553867230, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:14:\"Die Highlights\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:28:\"bordered-heading text-center\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', NULL, NULL, NULL, '', '', NULL, '', '', '', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, '', NULL, '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (990, 'headline', 210, 'tl_article', 128, 1553877648, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:28:\"bordered-heading text-center\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', NULL, NULL, NULL, '', '', NULL, '', '', '', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, '', NULL, '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (991, 'text', 210, 'tl_article', 640, 1553868952, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Alle Fotos © Claus-Dirk Langer, Dresden/Meißen

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (998, 'ct_wrapperStart', 214, 'tl_article', 64, 1553870516, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"row no-margin\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 'Inhaltscontainer mit Klasse \"row\"', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (999, 'ct_priceBox', 214, 'tl_article', 116, 1553873824, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Urban Exploring Foto-Reise\";}', '

Hin und Rückfahrt

\n

5 tägige Abenteuerreise

\n

Übernachtung und volle Verpflegung

\n

Urbexplorer/örtlicher Guide

\n

Urbexplorer Expeditionsfahrzeug

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '550 €', 'max. 7 Personen', '{{link_url::139}}', 'Jetzt bestellen', '{{link_url::93}}', 'Mehr Infos', 'Am beliebtesten', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1000, 'ct_priceBox', 214, 'tl_article', 112, 1553873803, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Urban Exploring Foto-Tour\";}', '

bis zu 10 Stunden fotografieren

\n

3 atemberaubende Industrieobjekte

\n

Übernachtung mit Frühstück

\n

Mitfahrgelegenheit

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '180 €', 'pro Person, inkl. MwSt.', '{{link_url::139}}', 'Jetzt bestellen', '{{link_url::93}}', 'Mehr Infos', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1001, 'ct_priceBox', 214, 'tl_article', 120, 1553873842, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:30:\"Urban Exploring Foto-Abenteuer\";}', '

9 Tage Fotoabenteuer

\n

inclusive Flug von Deutschland

\n

Übernachtung in Guesthouses

\n

deutschsprachiger Guide von Urbexplorer

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '1.490 €', 'Gruppenrabatt möglich', '{{link_url::139}}', 'Jetzt bestellen', '{{link_url::93}}', 'Mehr Infos', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1002, 'ct_wrapperStop', 214, 'tl_article', 124, 1553870516, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1003, 'html', 215, 'tl_article', 128, 1553873070, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', '
', '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', '
', '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:8:\"bordered\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', NULL, NULL, NULL, '', '', NULL, '', '', '', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, '', NULL, '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1006, 'html', 216, 'tl_article', 128, 1553873079, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', '
', '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', '
', '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:8:\"bordered\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', NULL, NULL, NULL, '', '', NULL, '', '', '', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, '', NULL, '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1007, 'gallery', 156, 'tl_article', 384, 1554464827, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Zweispaltig\";}', NULL, 0, 0, 0, 0, NULL, '', '', 'a:3:{i:0;s:3:\"510\";i:1;s:3:\"200\";i:2;s:4:\"crop\";}', '', 1, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, 0x613a323a7b693a303b733a31363a22b92fb24e467611e9a91c408d5c22fa41223b693a313b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b7d, 0, 2, 0, 0, 'custom', 0, 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1020, 'image', 220, 'tl_article', 128, 1554459204, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:24:\"Headerbild ohne Schräge\";}', NULL, 0, 0, 0, 0, 0xc942253a467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"16\";}', '', 0, 'sdsds', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'content_element/image/header_image_odd', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1022, 'gallery', 156, 'tl_article', 768, 1554464897, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:12:\"Fünfspaltig\";}', NULL, 0, 0, 0, 0, NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', '', 1, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, 0x613a353a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b7d, 0, 5, 0, 0, 'custom', 0, 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1023, 'gallery', 156, 'tl_article', 896, 1554464908, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Sechspaltig\";}', NULL, 0, 0, 0, 0, NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', '', 1, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, 0x613a363a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b7d, 0, 6, 0, 0, 'custom', 0, 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1024, 'gallery', 156, 'tl_article', 1024, 1554464918, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:13:\"Siebenspaltig\";}', NULL, 0, 0, 0, 0, NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', '', 1, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, 0x613a373a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b7d, 0, 7, 0, 0, 'custom', 0, 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1025, 'gallery', 156, 'tl_article', 1152, 1554464925, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Achtspaltig\";}', NULL, 0, 0, 0, 0, NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', '', 1, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, 0x613a383a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b7d, 0, 8, 0, 0, 'custom', 0, 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1026, 'gallery', 156, 'tl_article', 1280, 1554464985, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Neunspaltig\";}', NULL, 0, 0, 0, 0, NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', '', 1, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, 0x613a393a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a383b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b7d, 0, 9, 0, 0, 'custom', 0, 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1027, 'gallery', 156, 'tl_article', 1408, 1554464993, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Zehnspaltig\";}', NULL, 0, 0, 0, 0, NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', '', 1, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, 0x613a31303a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a383b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b693a393b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b7d, 0, 10, 0, 0, 'custom', 0, 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1028, 'gallery', 156, 'tl_article', 1472, 1554465027, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:10:\"Elfspaltig\";}', NULL, 0, 0, 0, 0, NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', '', 1, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, 0x613a31313a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a383b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b693a393b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b693a31303b733a31363a22c09740c7467611e9a91c408d5c22fa41223b7d, 0, 11, 0, 0, 'custom', 0, 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1029, 'gallery', 156, 'tl_article', 1504, 1554465044, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:13:\"Zwölfspaltig\";}', NULL, 0, 0, 0, 0, NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', '', 1, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, 0x613a31323a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a383b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b693a393b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b693a31303b733a31363a22c09740c7467611e9a91c408d5c22fa41223b693a31313b733a31363a22c433b88f467611e9a91c408d5c22fa41223b7d, 0, 12, 0, 0, 'custom', 0, 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1033, 'image', 228, 'tl_article', 128, 1555060408, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:34:\"Headerbild mit Schräge nach links\";}', NULL, 0, 0, 0, 0, 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'content_element/image/header_image_odd', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1034, 'headline', 229, 'tl_article', 128, 1555059685, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe. 929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1035, 'text', 229, 'tl_article', 256, 1555059685, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', 0, 0, 0, 0, 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 1, '', 'right', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1036, 'headline', 229, 'tl_article', 384, 1555059685, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1037, 'ct_wrapperStart', 229, 'tl_article', 512, 1555059685, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 'Inhaltscontainer mit Klasse \"row\"', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1038, 'text', 229, 'tl_article', 640, 1555059685, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1039, 'text', 229, 'tl_article', 768, 1555059685, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1040, 'text', 229, 'tl_article', 896, 1555059685, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1041, 'text', 229, 'tl_article', 1024, 1555059685, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1042, 'ct_wrapperStop', 229, 'tl_article', 1152, 1555059685, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, '', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 0, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1043, 'headline', 229, 'tl_article', 1280, 1555059685, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Letzte Blogeinträge\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1044, 'module', 229, 'tl_article', 1408, 1555059685, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 391, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1045, 'image', 230, 'tl_article', 128, 1555060418, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:35:\"Headerbild mit Schräge nach rechts\";}', NULL, 0, 0, 0, 0, 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'content_element/image/header_image_odd', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1046, 'headline', 231, 'tl_article', 128, 1555060297, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe. 929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1047, 'text', 231, 'tl_article', 256, 1555060297, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', 0, 0, 0, 0, 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 1, '', 'right', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1048, 'headline', 231, 'tl_article', 384, 1555060297, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1049, 'ct_wrapperStart', 231, 'tl_article', 512, 1555060297, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 'Inhaltscontainer mit Klasse \"row\"', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1050, 'text', 231, 'tl_article', 640, 1555060297, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1051, 'text', 231, 'tl_article', 768, 1555060297, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1052, 'text', 231, 'tl_article', 896, 1555060297, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1053, 'text', 231, 'tl_article', 1024, 1555060297, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1054, 'ct_wrapperStop', 231, 'tl_article', 1152, 1555060297, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, '', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 0, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1055, 'headline', 231, 'tl_article', 1280, 1555060297, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Letzte Blogeinträge\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1056, 'module', 231, 'tl_article', 1408, 1555060297, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 391, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1057, 'headline', 232, 'tl_article', 128, 1555060437, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe. 929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1058, 'text', 232, 'tl_article', 256, 1555060437, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', 0, 0, 0, 0, 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 1, '', 'right', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1059, 'headline', 232, 'tl_article', 384, 1555060437, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1060, 'ct_wrapperStart', 232, 'tl_article', 512, 1555060437, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 'Inhaltscontainer mit Klasse \"row\"', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1061, 'text', 232, 'tl_article', 640, 1555060437, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1062, 'text', 232, 'tl_article', 768, 1555060437, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1063, 'text', 232, 'tl_article', 896, 1555060437, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1064, 'text', 232, 'tl_article', 1024, 1555060437, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1065, 'ct_wrapperStop', 232, 'tl_article', 1152, 1555060437, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, '', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 0, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1066, 'headline', 232, 'tl_article', 1280, 1555060437, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Letzte Blogeinträge\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1067, 'module', 232, 'tl_article', 1408, 1555060437, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 391, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1068, 'image', 234, 'tl_article', 128, 1575631603, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:25:\"Layout mit geradem Header\";}', NULL, 0, 0, 0, 0, 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'content_element/image/header_image_odd', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1069, 'headline', 235, 'tl_article', 128, 1555060887, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe. 929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1070, 'text', 235, 'tl_article', 256, 1555060887, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', 0, 0, 0, 0, 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 1, '', 'right', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1071, 'headline', 235, 'tl_article', 384, 1555060887, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1072, 'ct_wrapperStart', 235, 'tl_article', 512, 1555060887, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 'Inhaltscontainer mit Klasse \"row\"', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1073, 'text', 235, 'tl_article', 640, 1555060887, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1074, 'text', 235, 'tl_article', 768, 1555060887, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1075, 'text', 235, 'tl_article', 896, 1555060887, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1076, 'text', 235, 'tl_article', 1024, 1555060887, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'col-12 col-md-6', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1077, 'ct_wrapperStop', 235, 'tl_article', 1152, 1555060887, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, '', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 0, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', '', '', '', '', 0, 0, 0, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1078, 'headline', 235, 'tl_article', 1280, 1555060887, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Letzte Blogeinträge\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1079, 'module', 235, 'tl_article', 1408, 1555060887, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 391, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1081, 'image', 238, 'tl_article', 128, 1555061396, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:22:\"Elemente mit Schrägen\";}', NULL, 0, 0, 0, 0, 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'content_element/image/header_image_odd', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1082, 'headline', 239, 'tl_article', 64, 1555061513, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:37:\"Schräge - oben rechts - unten rechts\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'text-center', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1083, 'text', 239, 'tl_article', 128, 1555061529, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 391, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1085, 'text', 237, 'tl_article', 256, 1555061622, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', 0, 0, 0, 0, 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 1, '', 'right', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1086, 'text', 240, 'tl_article', 256, 1555061657, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', 0, 0, 0, 0, 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 1, '', 'right', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1087, 'headline', 241, 'tl_article', 64, 1555061727, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:35:\"Schräge - oben links - unten links\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'text-center', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1088, 'text', 241, 'tl_article', 128, 1555061671, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 391, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1089, 'text', 242, 'tl_article', 256, 1555061752, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', 0, 0, 0, 0, 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 1, '', 'right', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1090, 'headline', 243, 'tl_article', 64, 1555061799, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:36:\"Schräge - oben links - unten rechts\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'text-center', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1091, 'text', 243, 'tl_article', 128, 1555061752, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 391, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1092, 'text', 244, 'tl_article', 256, 1555061752, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', 0, 0, 0, 0, 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 1, '', 'right', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1093, 'headline', 245, 'tl_article', 64, 1555061872, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:36:\"Schräge - oben rechts - unten links\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'text-center', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1094, 'text', 245, 'tl_article', 128, 1555061752, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 391, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1095, 'text', 246, 'tl_article', 256, 1555061878, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', 0, 0, 0, 0, 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 1, '', 'right', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1096, 'headline', 247, 'tl_article', 64, 1555062327, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Schräge - nur oben rechts\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', 'text-center', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1097, 'text', 247, 'tl_article', 128, 1555062276, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 391, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1098, 'text', 248, 'tl_article', 256, 1555062276, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', 0, 0, 0, 0, 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 1, '', 'right', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1099, 'headline', 236, 'tl_article', 256, 1555062388, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Letzte Blogeinträge\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1100, 'module', 236, 'tl_article', 384, 1555062381, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 391, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1104, 'image', 252, 'tl_article', 128, 1555068558, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:7:\"Kontakt\";}', NULL, 0, 0, 0, 0, 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'content_element/image/header_image_odd', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1105, 'headline', 251, 'tl_article', 256, 1555068793, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:12:\"Social Media\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1106, 'ct_featureElement', 251, 'tl_article', 384, 1555068772, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Facebook

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', 'fab fa-facebook-f', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1107, 'ct_featureElement', 251, 'tl_article', 512, 1555068772, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Twitter

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', 'fab fa-twitter', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1108, 'ct_featureElement', 251, 'tl_article', 640, 1555068772, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Instagram

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', 'fab fa-instagram', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1109, 'ct_featureElement', 251, 'tl_article', 768, 1555068772, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Pinterest

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', 'fab fa-pinterest-p', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1110, 'ct_featureElement', 251, 'tl_article', 896, 1555068772, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Linked In

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', 'fab fa-linkedin-in', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1111, 'ct_wrapperStart', 251, 'tl_article', 320, 1555069491, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"contact-icons\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', NULL, NULL, NULL, '', '', NULL, '', '', '', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, '', NULL, '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1112, 'ct_wrapperStop', 251, 'tl_article', 1024, 1555068866, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', NULL, NULL, NULL, '', '', NULL, '', '', '', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, '', NULL, '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1113, 'ct_featureElement', 251, 'tl_article', 192, 1555069533, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

+ 49 (0) 0123 4567890

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', 'fas fa-phone', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1114, 'ct_featureElement', 251, 'tl_article', 224, 1555069533, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

+ 49 (0) 0123 456789

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', 'fas fa-mobile', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1115, 'ct_featureElement', 251, 'tl_article', 240, 1555069533, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

+ 49 (0) 0123 4567891

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', 'fas fa-fax', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1116, 'ct_featureElement', 251, 'tl_article', 248, 1555069534, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

info@example.org

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', 'far fa-envelope', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1117, 'ct_wrapperStart', 251, 'tl_article', 160, 1555069542, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"contact-icons\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', NULL, NULL, NULL, '', '', NULL, '', '', '', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, '', NULL, '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1118, 'ct_wrapperStop', 251, 'tl_article', 252, 1555069547, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', NULL, NULL, NULL, '', '', NULL, '', '', '', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, '', NULL, '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1119, 'sliderStart', 253, 'tl_article', 128, 1560511460, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 1, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1120, 'sliderElement', 253, 'tl_article', 192, 1560511460, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Dank der Saalkapazitäten fanden in dem traditionsreichen Haus zahlreiche Großveranstaltungen statt. Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', 1, 0, 0, 0, 0xc942253a467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '{{event_url::26}}', 'Mehr dazu', 'Kultur & Freizeit', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1121, 'sliderElement', 253, 'tl_article', 208, 1560511460, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', 1, 0, 0, 0, 0xc416cb81467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '{{event_url::27}}', 'Mehr erfahren', 'Sport', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1122, 'sliderElement', 253, 'tl_article', 216, 1560511460, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:21:\"Kaserne in Bohnitzsch\";}', '

Das Kasernengelände in Meißen-Bohnitzsch wurde 1936 angelegt und wurde ab Mai 1945 von der Sowjetunion genutzt. Unter anderem war das 7. Garde-Panzerregiment der GSSD hier untergebracht.

', 1, 0, 0, 0, 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '{{news_url::12}}', 'Mehr dazu', 'Militär', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1123, 'sliderElement', 253, 'tl_article', 224, 1560511460, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Keramikfabrik\";}', '

Bei der Produktion von Kachelöfen, Wandplatten, Porzellanen und Schamotte war Meißen um 1900 führend in Deutschland. Die für Kachelöfen entwickelte Meißner Patentkachel war wohl in den meisten deutschen Wohnzimmern zu finden.

', 1, 0, 0, 0, 0xae24b6cc467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '{{link_url::120}}', 'Mehr dazu', 'Industrie', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1124, 'sliderElement', 253, 'tl_article', 248, 1560511460, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:29:\"E-Werk in der Brauhausstraße\";}', '

Das ehemalige Elektrizitätswerk an der Brauhausstraße ging 1911 in Betrieb und lieferte Strom für die Meißner Innenstadt. Nach 1990 wurde das E-Werk stillgelegt und 2004 wurde das Kesselhaus im hinteren Grundstücksbereich abgerissen.

', 1, 0, 0, 0, 0xb92fb24e467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '{{link_url::121}}', 'Weiterlesen', 'Industrie', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1125, 'sliderElement', 253, 'tl_article', 252, 1560511460, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"VEB Ziegelwerk Rotes Haus\";}', '

Die Ziegelei am Roten Haus war die letzte ihrer Art in Meißen, sie war nach fast 140 Jahren Produktion 1993 geschlossen worden.

', 1, 0, 0, 0, 0xc09740c7467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '{{news_url::23}}', 'Weiterlesen', 'Industrie', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1126, 'sliderStop', 253, 'tl_article', 256, 1560511460, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1129, 'headline', 255, 'tl_article', 128, 1560782354, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:14:\"Modale Dialoge\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', 'none', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', NULL, NULL, NULL, '', '', NULL, '', '', '', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, '', NULL, '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1130, 'module', 255, 'tl_article', 256, 1560782390, 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', 'none', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 418, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', NULL, NULL, NULL, '', '', NULL, '', '', '', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, '', NULL, '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1131, 'module', 255, 'tl_article', 384, 1560783378, 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', 'none', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 419, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', NULL, NULL, NULL, '', '', NULL, '', '', '', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, '', NULL, '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1132, 'module', 255, 'tl_article', 512, 1560783579, 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', 'none', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 420, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', NULL, NULL, NULL, '', '', NULL, '', '', '', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, '', NULL, '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1133, 'module', 255, 'tl_article', 640, 1560783641, 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', 'none', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 421, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', NULL, NULL, NULL, '', '', NULL, '', '', '', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, '', NULL, '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1134, 'module', 255, 'tl_article', 448, 1560843081, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', 'none', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 422, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', NULL, NULL, NULL, '', '', NULL, '', '', '', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, '', NULL, '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1135, 'module', 197, 'tl_article', 64, 1641290342, 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 423, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', NULL, NULL, NULL, 'ascending', 0, 0, 0, 0, 0, '', '', NULL, NULL, NULL, '', '', NULL, '', '', '', NULL, NULL, NULL, NULL, '', '', NULL, NULL, NULL, '', NULL, '', '', '', '', NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `odd_page`, `odd_linkText`, `odd_subHeadline`, `com_order`, `com_perPage`, `com_moderate`, `com_bbcode`, `com_disableCaptcha`, `com_requireLogin`, `com_template`, `advancedCss`, `ct_contentBox_page`, `ct_contentBox_pageText`, `ct_contentBox_pageTitle`, `ct_contentBox_customTpl`, `ct_featureIcon`, `ct_iconLink`, `ct_featureElement_customTpl`, `ct_price`, `ct_priceLabel`, `ct_priceBox_link1`, `ct_priceBox_linkText1`, `ct_priceBox_link2`, `ct_priceBox_linkText2`, `ct_popularPriceBox`, `ct_priceBox_customTpl`, `ct_teaserBox_page`, `ct_teaserBox_pageText`, `ct_teaserBox_pageTitle`, `ct_teaserBox_customTpl`, `ct_wrapper_name`, `ct_sliderElement_page`, `ct_sliderElement_linkText`, `ct_sliderElement_target`, `ct_sliderElement_subHeadline`, `ct_sliderElement_playerSRC`, `unfilteredHtml`) VALUES (1137, 'gallery', 156, 'tl_article', 192, 1644934174, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:10:\"Referenzen\";}', NULL, 0, 0, 0, 0, NULL, '', '', 'a:3:{i:0;s:3:\"510\";i:1;s:3:\"200\";i:2;s:4:\"crop\";}', '', 1, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, 0x613a323a7b693a303b733a31363a22b92fb24e467611e9a91c408d5c22fa41223b693a313b733a31363a22c09740c7467611e9a91c408d5c22fa41223b7d, 0, 2, 0, 0, 'custom', 0, 'gallery_default_references', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', '', '', '', 'ascending', 0, 0, 0, 0, 0, 'com_default', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, NULL); + +INSERT INTO `tl_faq` (`id`, `pid`, `sorting`, `tstamp`, `question`, `alias`, `author`, `answer`, `pageTitle`, `robots`, `description`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `noComments`, `published`) VALUES (8, 5, 32, 1511950486, 'Do your users have any questions?', '', 1, '

To display the FAQ on your website you can choose from three modules in the Contao back-end. Those offer the possibility to configure the output of your frequently asked questions in various ways.

\n\n

The FAQ - List is a frontend module that lets you list your questions and answers from chosen categories. Only the title question and a link to the FAQ - Reader (which needs to be placed on a secondary site) are displayed. It might be a good option to choose this ouput if you have a longer list of questions.

\n

Another way to display information to the visitors is the FAQ - Page module. This module lists all your questions and answers on one page. Linking to another site is not necessary and therefore it is recommanded if you want to show just a few questions and keep all the information on one site. With a little additional code in the mod_faqpage.html5 template you can easily integrate a javascript accordion which will improve the usability of your FAQ greatly for your visitors.

', '', '', NULL, 0, 0, 0x00000000000000000000000000000000, '', '', '', '', 0, '', '', 0, NULL, 0, 1); +INSERT INTO `tl_faq` (`id`, `pid`, `sorting`, `tstamp`, `question`, `alias`, `author`, `answer`, `pageTitle`, `robots`, `description`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `noComments`, `published`) VALUES (9, 5, 64, 1511950487, 'You have to answer the same over and over?', '', 1, '

Every single question and answer allows you to display a title question and a text (of course). You can also add an image and/or an enclosure next to your FAQ item. The predefined fields allow you to set an author of the item and lets you choose if you want to publish the item right away or keep it unpublished for the time being.

', '', '', NULL, 0, 0, 0x00000000000000000000000000000000, '', '', '', '', 0, '', '', 0, NULL, 0, 1); +INSERT INTO `tl_faq` (`id`, `pid`, `sorting`, `tstamp`, `question`, `alias`, `author`, `answer`, `pageTitle`, `robots`, `description`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `noComments`, `published`) VALUES (10, 5, 256, 1511950488, 'You want to hear the opinions of the website members?', '', 1, '

The FAQ also enable you to manage comments. With the tick on the checkbox \"Enable comments\"in your FAQ category configuration you allow your visitors to leave comments on your FAQs. Different options are integrated to fit your needs regarding the workflow of submitted comments.

\n', '', '', NULL, 0, 0, 0x00000000000000000000000000000000, '', '', '', '', 0, '', '', 0, NULL, 0, 1); + +INSERT INTO `tl_faq_category` (`id`, `tstamp`, `title`, `headline`, `jumpTo`, `allowComments`, `notify`, `sortOrder`, `perPage`, `moderate`, `bbcode`, `requireLogin`, `disableCaptcha`) VALUES (5, 1539344484, 'Odd / FAQ', 'FAQ', 137, 1, 'notify_admin', 'ascending', 0, 0, 0, 0, 0); + +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (718, NULL, 1538489608, 0x5556381bc64d11e88ff2408d5c22fa41, 'folder', 'files/odd', '', 'c62b1ec4b5c5a4e2a186bce08cb64b48', NULL, 1, 'odd', '0', '0', '0', '0', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (720, 0x5556381bc64d11e88ff2408d5c22fa41, 1538489691, 0x86ee99abc64d11e88ff2408d5c22fa41, 'folder', 'files/odd/img', '', '079c14b1399536cf8514e64cb93453ed', NULL, 1, 'img', '0', '0', '0', '0', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (755, 0x86ee99abc64d11e88ff2408d5c22fa41, 1552579599, 0x267f1df5467311e9a91c408d5c22fa41, 'folder', 'files/odd/img/verlassene-orte-meissen', '', '5652813e47ef238e3e5e167a24da3428', NULL, 1, 'verlassene-orte-meissen', '0', '0', '0', '0', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (796, 0x267f1df5467311e9a91c408d5c22fa41, 1553878188, 0xae24b6cc467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/keramikfabrik.jpg', 'jpg', 'b477fb4521e9dea4d4ccf8cddc88bdb5', NULL, 1, 'keramikfabrik.jpg', '0.00048828125', '0.243401759531', '0.99951171875', '0.593108504399', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (797, 0x267f1df5467311e9a91c408d5c22fa41, 1552658157, 0xb0ad636c467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/zuckerwarenfabrik-elbdom.jpg', 'jpg', '01b19ac855e4dc1edf18a048cfaa8100', NULL, 1, 'zuckerwarenfabrik-elbdom.jpg', '0', '0', '0', '0', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (798, 0x267f1df5467311e9a91c408d5c22fa41, 1552658153, 0xb0b560c5467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/wohnhaus-rosengasse-1.jpg', 'jpg', '6b30092e92ea58c487f633022bdafa7a', NULL, 1, 'wohnhaus-rosengasse-1.jpg', '0', '0', '0', '0', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (799, 0x267f1df5467311e9a91c408d5c22fa41, 1552658156, 0xb2d63e05467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/wohnhaus-rosengasse-3.jpg', 'jpg', '33416ee1cda94de335dba34bfe8c34ee', NULL, 1, 'wohnhaus-rosengasse-3.jpg', '0', '0', '0', '0', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (800, 0x267f1df5467311e9a91c408d5c22fa41, 1552658152, 0xb525bf9c467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/wohnhaus-goernische-gasse.jpg', 'jpg', '9e9abd17d1a49053d11924edcebccf1e', NULL, 1, 'wohnhaus-goernische-gasse.jpg', '0', '0.139205662603', '1', '0.181281950452', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (801, 0x267f1df5467311e9a91c408d5c22fa41, 1552658155, 0xb81fbc97467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/wohnhaus-rosengasse-2.jpg', 'jpg', 'ef1a07b23859899a734e925d7a2c9700', NULL, 1, 'wohnhaus-rosengasse-2.jpg', '0', '0.246356696738', '1', '0.19465648855', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (802, 0x267f1df5467311e9a91c408d5c22fa41, 1644934347, 0xb92fb24e467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/e-werk-brauhausstrasse-1.jpg', 'jpg', '61cdb7bef90f13a7136a8a4b25dc905f', NULL, 1, 'e-werk-brauhausstrasse-1.jpg', '0.00732421875', '0.0791556728232', '0.99267578125', '0.529683377309', 0x613a313a7b733a323a226465223b613a353a7b733a353a227469746c65223b733a383a225265666572656e7a223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a32323a22452d5765726b20427261756861757373747261c39f65223b733a373a226c6963656e7365223b733a303a22223b7d7d); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (804, 0x267f1df5467311e9a91c408d5c22fa41, 1644934343, 0xc09740c7467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/alte-ziegelei-1.jpg', 'jpg', 'a247b7b1e54abc0c5046f6d78607f185', NULL, 1, 'alte-ziegelei-1.jpg', '0.01025390625', '0.212609970674', '0.98974609375', '0.558651026393', 'a:1:{s:2:\"de\";a:5:{s:5:\"title\";s:8:\"Referenz\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:13:\"Alte Ziegelei\";s:7:\"license\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (805, 0x267f1df5467311e9a91c408d5c22fa41, 1552658147, 0xc416cb81467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/jahnhalle.jpg', 'jpg', '8f7955f5b457654b74a15e88654f8728', NULL, 1, 'jahnhalle.jpg', '0', '0.148093841642', '1', '0.646627565982', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (806, 0x267f1df5467311e9a91c408d5c22fa41, 1552658145, 0xc433b88f467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/alte-ziegelei-3.jpg', 'jpg', '40936257485cd57168f9fa455e933d5a', NULL, 1, 'alte-ziegelei-3.jpg', '0', '0', '0', '0', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (807, 0x267f1df5467311e9a91c408d5c22fa41, 1552658150, 0xc6eaaf6d467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/rittergut-coelln.jpg', 'jpg', 'f630378402f55ff1df4e8bed31098d01', NULL, 1, 'rittergut-coelln.jpg', '0', '0.283724340176', '1', '0.401759530792', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (809, 0x267f1df5467311e9a91c408d5c22fa41, 1553878145, 0xc942253a467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/hamburger-hof.jpg', 'jpg', '3f64cf746174ec835dc2d5670811ffaa', NULL, 1, 'hamburger-hof.jpg', '0.00341796875', '0.110520722635', '0.99658203125', '0.672688629118', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (810, 0x267f1df5467311e9a91c408d5c22fa41, 1553878163, 0xcbc4a14c467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/kaserne-bohnitzsch-1.jpg', 'jpg', '6ca91cbb5c7f27795f171a1d122290d4', NULL, 1, 'kaserne-bohnitzsch-1.jpg', '0.0078125', '0.183284457478', '0.9921875', '0.609970674487', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (811, 0x267f1df5467311e9a91c408d5c22fa41, 1553878174, 0xccb24364467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/kaserne-bohnitzsch-2.jpg', 'jpg', '8839c2910a3f63f8607f94705aa10c4b', NULL, 1, 'kaserne-bohnitzsch-2.jpg', '0', '0.127565982405', '1', '0.681085043988', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (812, 0x267f1df5467311e9a91c408d5c22fa41, 1553878204, 0xce7c80c2467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/landkrankenhaus.jpg', 'jpg', 'a3b13f1be8e11c70c86253fa827f299a', NULL, 1, 'landkrankenhaus.jpg', '0.0048828125', '0.280575539568', '0.9951171875', '0.531066056246', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (813, 0x267f1df5467311e9a91c408d5c22fa41, 1552658147, 0xd285349b467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/herrenhaus-dresdner-strasse.jpg', 'jpg', 'a0e798cdd651953ae3f129724fcb3d7d', NULL, 1, 'herrenhaus-dresdner-strasse.jpg', '0', '0', '0', '0', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (815, 0x86ee99abc64d11e88ff2408d5c22fa41, 1552657625, 0xc96d0cf7472811e9a91c408d5c22fa41, 'file', 'files/odd/img/ODD_Logo.png', 'png', '0dd572b40f1e9c2843715f9d1dcc677e', NULL, 1, 'ODD_Logo.png', '0', '0', '0', '0', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:33:\"ODD Logo - Exploring Contao Theme\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (820, 0x5556381bc64d11e88ff2408d5c22fa41, 1553271254, 0x89152b404cbd11e9a91c408d5c22fa41, 'folder', 'files/odd/scss', '', 'af3cb9077c044201ad94991c70c728d1', NULL, 1, 'scss', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (821, 0x89152b404cbd11e9a91c408d5c22fa41, 1575380404, 0x89152b384cbd11e9a91c408d5c22fa41, 'file', 'files/odd/scss/_custom_colors.scss', 'scss', 'faa3e283a513251c3af4f09bf6d5d961', NULL, 1, '_custom_colors.scss', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (822, 0x89152b404cbd11e9a91c408d5c22fa41, 1553271254, 0x89152b324cbd11e9a91c408d5c22fa41, 'file', 'files/odd/scss/_custom_variables.scss', 'scss', '4791bf84f66d4b442eeaeac9bb8a8c72', NULL, 1, '_custom_variables.scss', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (823, 0x89152b404cbd11e9a91c408d5c22fa41, 1575380926, 0x89152b2b4cbd11e9a91c408d5c22fa41, 'file', 'files/odd/scss/custom.scss', 'scss', '9cbb457cbe5c21e7a8a0f3992523afdb', NULL, 1, 'custom.scss', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (854, 0x267f1df5467311e9a91c408d5c22fa41, 1555065120, 0x34b541155d0e11e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/IMG_3790_1_HDR_tonemapped.jpg', 'jpg', 'd98ebb0c9aad9dd1bc4be9bfdc739a66', NULL, 1, 'IMG_3790_1_HDR_tonemapped.jpg', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (855, 0x267f1df5467311e9a91c408d5c22fa41, 1555065120, 0x34b5410d5d0e11e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/PICT0004_03_8bit.jpg', 'jpg', '6c55203d749a9ba94106930d66f9044b', NULL, 1, 'PICT0004_03_8bit.jpg', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (856, 0x267f1df5467311e9a91c408d5c22fa41, 1555065120, 0x34b541065d0e11e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/e-werk-brauhausstrasse-2.jpg', 'jpg', 'e0d8a92393c972e5cd168d5a78dd67b7', NULL, 1, 'e-werk-brauhausstrasse-2.jpg', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (857, 0x86ee99abc64d11e88ff2408d5c22fa41, 1555316209, 0xd163d7285f5611e989ece0d55edd9ad9, 'file', 'files/odd/img/favicon.ico', 'ico', '75ab0f0a098e0a63c5a68c9cb577b9e1', NULL, 1, 'favicon.ico', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (858, NULL, 1638524413, 0x03978b0f541d11ec8ee0e0d55e59bff3, 'folder', 'files/social-feed', '', '4d2d253fd689642108b33d6deb15f113', NULL, 1, 'social-feed', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (859, 0x03978b0f541d11ec8ee0e0d55e59bff3, 1638524413, 0x03978b04541d11ec8ee0e0d55e59bff3, 'folder', 'files/social-feed/70570732', '', 'a6fbae4602a396d3aaa1b982987550d6', NULL, 1, '70570732', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (860, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524413, 0x03978afc541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6868857032481538048.jpg', 'jpg', '28d81d1e1217d5fc79781bb9becc742a', NULL, 1, '6868857032481538048.jpg', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (861, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524413, 0x03978af5541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6863780628970684416.jpg', 'jpg', '9a269aaa9d7811b160d070621ebb40d3', NULL, 1, '6863780628970684416.jpg', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (862, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524414, 0x03978aeb541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6859777035833786368.jpg', 'jpg', '0f88e5d0ea5396e6b111e134321e5033', NULL, 1, '6859777035833786368.jpg', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (863, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524414, 0x03978ae4541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6821723322980589568.jpg', 'jpg', '6cc89d2eb80b2e58a96c8a8919f6bc3b', NULL, 1, '6821723322980589568.jpg', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (864, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524414, 0x03978adc541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6814107593779269633.jpg', 'jpg', '8ed28675f33d2f3fa6ee96979e532dc5', NULL, 1, '6814107593779269633.jpg', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (865, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524415, 0x03978ad4541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6810600668026454016.jpg', 'jpg', '11df1eb0f5b8469080bbaa6a8e4a8841', NULL, 1, '6810600668026454016.jpg', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (866, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524415, 0x03978ac8541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6806161831481159680.jpg', 'jpg', 'b4fad794ccfcf56f75617f9614f7c243', NULL, 1, '6806161831481159680.jpg', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (867, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524420, 0x03978a95541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6802949577843453952.jpg', 'jpg', '76ea90aba86bbf728e9a407154bbbc11', NULL, 1, '6802949577843453952.jpg', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (868, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524420, 0x08043c64541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6800429967206359041.jpg', 'jpg', 'ffeafff60a8a39c0ae7f6ebe37e4baa0', NULL, 1, '6800429967206359041.jpg', '0', '0', '0', '0', NULL); + +INSERT INTO `tl_form` (`id`, `tstamp`, `title`, `alias`, `jumpTo`, `sendViaEmail`, `mailerTransport`, `recipient`, `subject`, `format`, `skipEmpty`, `storeValues`, `targetTable`, `customTpl`, `method`, `novalidate`, `attributes`, `formID`, `allowTags`) VALUES (6, 1664481495, 'Odd / Beispielformular', 'mate-beispielformular', 135, 1, '', 'info@example.de', 'Formular-Anfrage mate.contao-themes.net', 'raw', 0, 0, '', '', 'POST', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', 0); +INSERT INTO `tl_form` (`id`, `tstamp`, `title`, `alias`, `jumpTo`, `sendViaEmail`, `mailerTransport`, `recipient`, `subject`, `format`, `skipEmpty`, `storeValues`, `targetTable`, `customTpl`, `method`, `novalidate`, `attributes`, `formID`, `allowTags`) VALUES (8, 1664481503, 'Odd / Kontaktformular', 'mate-kontaktformular', 135, 1, '', 'info@example.de', 'Anfrage Kontaktformular bei Mate Theme', 'raw', 0, 0, '', '', 'POST', 0, 'a:2:{i:0;s:0:\"\";i:1;s:4:\"test\";}', '', 0); + +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (22, 'text', 6, 128, 1511533531, 'Name', 'name', NULL, NULL, NULL, 1, '', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;i:4;i:1;i:40;}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', 0, NULL, 0, 0, '', '', 0, 0, '', '', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (23, 'text', 6, 64, 1664481228, 'Vorname', 'vorname', NULL, NULL, NULL, 0, '', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;i:4;i:1;i:40;}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', 0, NULL, 0, 0, '', '', 0, 0, '', '', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (27, 'text', 6, 640, 1511533525, 'E-Mail', 'email', NULL, NULL, NULL, 0, 'email', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;i:4;i:1;i:40;}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', 0, NULL, 0, 0, '', '', 0, 0, '', '', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (28, 'text', 6, 768, 1511533391, 'Telefon', 'telefon', NULL, NULL, NULL, 0, 'phone', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;i:4;i:1;i:40;}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', 0, NULL, 0, 0, '', '', 0, 0, '', '', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (29, 'textarea', 6, 896, 1511533449, 'Ihre Nachricht', 'nachricht', NULL, NULL, NULL, 1, '', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;s:1:\"4\";i:1;s:2:\"40\";}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', 0, NULL, 0, 0, '', '', 0, 0, '', '', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (30, 'submit', 6, 1024, 1511533458, '', '', NULL, NULL, NULL, 0, '', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;i:4;i:1;i:40;}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', 0, NULL, 0, 0, '', '', 0, 0, '', 'Absenden', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (31, 'checkbox', 6, 876, 1511786014, 'Checkbox-Menü', 'kontaktart', NULL, NULL, 'a:3:{i:0;a:2:{s:5:\"value\";s:8:\"auswahl1\";s:5:\"label\";s:9:\"Auswahl 1\";}i:1;a:2:{s:5:\"value\";s:8:\"auswahl2\";s:5:\"label\";s:9:\"Auswahl 2\";}i:2;a:2:{s:5:\"value\";s:8:\"auswahl3\";s:5:\"label\";s:9:\"Auswahl 3\";}}', 0, '', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;i:4;i:1;i:40;}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', 0, NULL, 0, 0, '', '', 0, 0, '', '', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (32, 'select', 6, 864, 1511534002, 'Wie sind Sie auf uns aufmerksam geworden?', 'wie-gefunden', NULL, NULL, 0x613a363a7b693a303b613a323a7b733a353a2276616c7565223b733a383a22696e7465726e6574223b733a353a226c6162656c223b733a383a22496e7465726e6574223b7d693a313b613a323a7b733a353a2276616c7565223b733a373a227a656974756e67223b733a353a226c6162656c223b733a373a225a656974756e67223b7d693a323b613a323a7b733a353a2276616c7565223b733a31313a22706572736f656e6c696368223b733a353a226c6162656c223b733a32333a2250657273c3b66e6c6963686520456d706665686c756e67223b7d693a333b613a323a7b733a353a2276616c7565223b733a353a22726164696f223b733a353a226c6162656c223b733a353a22526164696f223b7d693a343b613a323a7b733a353a2276616c7565223b733a323a227476223b733a353a226c6162656c223b733a323a225456223b7d693a353b613a323a7b733a353a2276616c7565223b733a393a22736f6e737469676573223b733a353a226c6162656c223b733a393a22536f6e737469676573223b7d7d, 0, '', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;i:4;i:1;i:40;}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', 0, NULL, 0, 0, '', '', 0, 0, '', '', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (33, 'radio', 6, 888, 1511536334, 'Radio-Button-Menü', 'radio-button', NULL, NULL, 'a:4:{i:0;a:2:{s:5:\"value\";s:5:\"wert1\";s:5:\"label\";s:6:\"Wert 1\";}i:1;a:2:{s:5:\"value\";s:5:\"wert2\";s:5:\"label\";s:6:\"Wert 2\";}i:2;a:2:{s:5:\"value\";s:5:\"wert3\";s:5:\"label\";s:6:\"Wert 3\";}i:3;a:2:{s:5:\"value\";s:5:\"wert4\";s:5:\"label\";s:6:\"Wert 4\";}}', 0, '', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;i:4;i:1;i:40;}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', 0, NULL, 0, 0, '', '', 0, 0, '', '', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (34, 'upload', 6, 892, 1645102642, 'Dateiupload', 'dateiupload', NULL, NULL, NULL, 0, '', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;i:4;i:1;i:40;}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', 1, NULL, 0, 1, '', '', 0, 0, 'form_upload_odd', '', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (47, 'text', 6, 816, 1511781024, 'Datumsauswahl', 'datepicker', NULL, NULL, NULL, 0, '', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;i:4;i:1;i:40;}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', 0, NULL, 0, 0, 'datepicker', '', 0, 0, '', '', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (48, 'text', 6, 840, 1511781167, 'Zeitauswahl', 'timepicker', NULL, NULL, NULL, 0, '', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;i:4;i:1;i:40;}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', 0, NULL, 0, 0, 'timepicker', '', 0, 0, '', '', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (50, 'text', 8, 128, 1555069694, 'Name', 'name', NULL, NULL, NULL, 1, '', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;i:4;i:1;i:40;}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', 0, NULL, 0, 0, '', '', 0, 0, '', '', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (52, 'text', 8, 384, 1512724283, 'E-Mail', 'email', NULL, NULL, NULL, 1, 'email', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;i:4;i:1;i:40;}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', 0, NULL, 0, 0, '', '', 0, 0, '', '', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (53, 'textarea', 8, 512, 1512724310, 'Ihre Nachricht', 'nachricht', NULL, NULL, NULL, 1, '', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;s:1:\"4\";i:1;s:2:\"40\";}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', 0, NULL, 0, 0, '', '', 0, 0, '', '', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (54, 'submit', 8, 640, 1512724321, '', '', NULL, NULL, NULL, 0, '', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;i:4;i:1;i:40;}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', 0, NULL, 0, 0, '', '', 0, 0, '', 'Absenden', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (58, 'captcha', 8, 576, 1555069708, '', '', NULL, NULL, NULL, 0, '', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;i:4;i:1;i:40;}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', 0, NULL, 0, 0, '', '', 0, 0, '', '', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (60, 'explanation', 8, 768, 1555069889, '', '', '

 

\n

* Pflichtfelder

', NULL, NULL, 0, '', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;i:4;i:1;i:40;}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', 0, NULL, 0, 0, '', '', 0, 0, '', '', 0, NULL, 0, ''); + +INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `formats`, `skipIfDimensionsMatch`, `lazyLoading`) VALUES (16, 17, 1555080617, 'Headerbild', '', '', '', 1920, 400, 'crop', 0, '', 1, 0); +INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `formats`, `skipIfDimensionsMatch`, `lazyLoading`) VALUES (17, 17, 1560847552, 'Headerbild mit Schräge', '', '1x, 1.5x, 2x', '', 1920, 650, 'crop', 0, '', 1, 0); +INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `formats`, `skipIfDimensionsMatch`, `lazyLoading`) VALUES (18, 17, 1552657088, 'Slider', '', '', '', 1920, 750, 'crop', 0, '', 1, 0); +INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `formats`, `skipIfDimensionsMatch`, `lazyLoading`) VALUES (19, 17, 1525783920, 'Teaserboxen', '', '1x, 1.5x, 2x', '', 350, 200, 'crop', 0, '', 1, 0); +INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `formats`, `skipIfDimensionsMatch`, `lazyLoading`) VALUES (22, 17, 1528372682, 'Team', '', '1x, 1.5x, 2x', '', 350, 250, 'crop', 100, '', 1, 0); +INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `formats`, `skipIfDimensionsMatch`, `lazyLoading`) VALUES (23, 17, 1539099645, 'News / Listenansicht', '', '', '', 540, 350, 'crop', 100, '', 1, 0); +INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `formats`, `skipIfDimensionsMatch`, `lazyLoading`) VALUES (24, 17, 1560847649, 'Slider mit Schräge', '', '', '', 1920, 900, 'crop', 0, '', 1, 0); +INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `formats`, `skipIfDimensionsMatch`, `lazyLoading`) VALUES (25, 17, 1552657717, 'Logo', '', '1x, 1.5x, 2x', '', NULL, 90, 'box', NULL, '', 1, 0); +INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `formats`, `skipIfDimensionsMatch`, `lazyLoading`) VALUES (26, 17, 1572884258, 'Maklermodul / Listenansicht', '', '', '', 357, 200, 'crop', 0, '', 0, 0); + +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (6, 16, 128, 1555080029, '(max-width: 991px)', '1x, 1.5x, 2x', '', 991, 350, 'crop', NULL, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (7, 17, 128, 1555080183, '(max-width: 767px)', '1x, 1.5x, 2x', '', 767, 450, 'crop', NULL, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (8, 18, 128, 1525699627, '(max-width:767px)', '1x, 1.5x, 2x', '', 767, 500, 'crop', 0, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (9, 18, 256, 1525787411, '(max-width:1024px)', '1x, 1.5x, 2x', '', 1024, 500, 'crop', 0, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (10, 18, 384, 1525856669, '(max-width:1300px)', '1x, 1.5x, 2x', '', 1300, 550, 'crop', 0, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (13, 22, 128, 1528372677, '(max-width:1199px)', '1x, 1.5x, 2x', '', 300, 200, 'crop', 100, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (14, 22, 64, 1528372754, '(max-width:991px)', '1x, 1.5x, 2x', '', 420, 300, 'crop', 100, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (15, 22, 32, 1528372807, '(max-width:767px)', '1x, 1.5x, 2x', '', 510, 350, 'crop', 100, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (16, 22, 16, 1528372855, '(max-width:400px)', '1x, 1.5x, 2x', '', 370, 255, 'crop', 100, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (20, 24, 128, 1552659511, '(max-width: 1450px)', '1x, 1.5x, 2x', '', 1455, 800, 'crop', 0, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (21, 24, 64, 1552659506, '(max-width: 1150px)', '1x, 1.5x, 2x', '', 1150, 800, 'crop', 0, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (22, 24, 32, 1552659500, '(max-width:992px)', '1x, 1.5x, 2x', '', 992, 800, 'crop', 0, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (23, 24, 16, 1552660075, '(max-width: 767px)', '1x, 1.5x, 2x', '', 767, 500, 'crop', 0, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (25, 19, 128, 1552663259, '(max-width: 767px)', '1x, 1.5x, 2x', '', 510, 300, 'crop', 0, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (27, 17, 256, 1555079599, '(max-width: 991px)', '1x, 1.5x, 2x', '', 991, 500, 'crop', NULL, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (28, 17, 64, 1555079881, '(max-width: 450px)', '1x, 1.5x, 2x', '', 450, 400, 'crop', NULL, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (29, 16, 64, 1555080549, '(max-width: 450px)', '1x, 1.5x, 2x', '', 450, 250, 'crop', NULL, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (30, 16, 256, 1555080674, '(max-width: 1200px)', '1x, 1.5x, 2x', '', 1200, 350, 'crop', NULL, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (31, 24, 8, 1560847732, '(max-width: 450px)', '1x, 1.5x, 2x', '', 450, 295, 'crop', 0, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (32, 18, 64, 1560847802, '(max-width: 450px)', '1x, 1.5x, 2x', '', 450, 295, 'crop', 0, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (33, 19, 64, 1560847852, '(max-width: 450px)', '1x, 1.5x, 2x', '', 380, 225, 'crop', 0, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (34, 26, 128, 1572884653, '(max-width:991px)', '', '', 417, 233, 'crop', 0, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (35, 26, 64, 1572884651, '(max-width:767px)', '', '', 511, 286, 'crop', 0, 0); + +INSERT INTO `tl_layout` (`id`, `pid`, `tstamp`, `name`, `rows`, `headerHeight`, `footerHeight`, `cols`, `widthLeft`, `widthRight`, `sections`, `framework`, `external`, `combineScripts`, `modules`, `template`, `minifyMarkup`, `lightboxSize`, `defaultImageDensities`, `viewport`, `titleTag`, `cssClass`, `onload`, `head`, `addJQuery`, `jquery`, `addMooTools`, `mootools`, `analytics`, `externalJs`, `scripts`, `script`, `static`, `width`, `align`, `newsfeeds`, `calendarfeeds`) VALUES (55, 17, 1643298800, 'Einspaltiges Layout / Schräger Header', '3rw', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '1cl', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '', 'a:1:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:2:\"id\";s:0:\"\";s:8:\"template\";s:13:\"block_section\";s:8:\"position\";s:3:\"top\";}}', '', NULL, 1, 'a:6:{i:0;a:3:{s:3:\"mod\";s:3:\"382\";s:3:\"col\";s:6:\"header\";s:6:\"enable\";s:1:\"1\";}i:1;a:3:{s:3:\"mod\";s:1:\"0\";s:3:\"col\";s:6:\"header\";s:6:\"enable\";s:1:\"1\";}i:2;a:3:{s:3:\"mod\";s:1:\"0\";s:3:\"col\";s:4:\"main\";s:6:\"enable\";s:1:\"1\";}i:3;a:3:{s:3:\"mod\";s:3:\"392\";s:3:\"col\";s:6:\"footer\";s:6:\"enable\";s:1:\"1\";}i:4;a:3:{s:3:\"mod\";s:3:\"372\";s:3:\"col\";s:6:\"footer\";s:6:\"enable\";s:1:\"1\";}i:5;a:3:{s:3:\"mod\";s:3:\"371\";s:3:\"col\";s:6:\"footer\";s:6:\"enable\";s:1:\"1\";}}', 'fe_page_odd', 1, 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', 'width=device-width, initial-scale=1, shrink-to-fit=no', '', '', '', NULL, 1, 'a:2:{i:0;s:11:\"j_accordion\";i:1;s:10:\"j_colorbox\";}', 0, NULL, NULL, NULL, 'a:1:{i:0;s:9:\"js_slider\";}', NULL, 0, '', 'center', NULL, NULL); +INSERT INTO `tl_layout` (`id`, `pid`, `tstamp`, `name`, `rows`, `headerHeight`, `footerHeight`, `cols`, `widthLeft`, `widthRight`, `sections`, `framework`, `external`, `combineScripts`, `modules`, `template`, `minifyMarkup`, `lightboxSize`, `defaultImageDensities`, `viewport`, `titleTag`, `cssClass`, `onload`, `head`, `addJQuery`, `jquery`, `addMooTools`, `mootools`, `analytics`, `externalJs`, `scripts`, `script`, `static`, `width`, `align`, `newsfeeds`, `calendarfeeds`) VALUES (56, 17, 1644832868, 'Zweispaltiges Layout / Linke Spalte / Schräger Header', '3rw', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '2cll', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '', 'a:1:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:2:\"id\";s:0:\"\";s:8:\"template\";s:13:\"block_section\";s:8:\"position\";s:3:\"top\";}}', '', NULL, 1, 'a:8:{i:0;a:3:{s:3:\"mod\";s:3:\"382\";s:3:\"col\";s:6:\"header\";s:6:\"enable\";s:1:\"1\";}i:1;a:3:{s:3:\"mod\";s:1:\"0\";s:3:\"col\";s:6:\"header\";s:6:\"enable\";s:1:\"1\";}i:2;a:3:{s:3:\"mod\";s:3:\"384\";s:3:\"col\";s:4:\"left\";s:6:\"enable\";s:1:\"1\";}i:3;a:3:{s:3:\"mod\";s:1:\"0\";s:3:\"col\";s:4:\"left\";s:6:\"enable\";s:1:\"1\";}i:4;a:3:{s:3:\"mod\";s:1:\"0\";s:3:\"col\";s:4:\"main\";s:6:\"enable\";s:1:\"1\";}i:5;a:3:{s:3:\"mod\";s:3:\"392\";s:3:\"col\";s:6:\"footer\";s:6:\"enable\";s:1:\"1\";}i:6;a:3:{s:3:\"mod\";s:3:\"372\";s:3:\"col\";s:6:\"footer\";s:6:\"enable\";s:1:\"1\";}i:7;a:3:{s:3:\"mod\";s:3:\"371\";s:3:\"col\";s:6:\"footer\";s:6:\"enable\";s:1:\"1\";}}', 'fe_page_odd_left', 1, 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', 'width=device-width, initial-scale=1, shrink-to-fit=no', '', 'left-col-layout', '', NULL, 1, 'a:2:{i:0;s:11:\"j_accordion\";i:1;s:10:\"j_colorbox\";}', 0, NULL, NULL, NULL, 'a:1:{i:0;s:9:\"js_slider\";}', NULL, 0, '', 'center', NULL, NULL); +INSERT INTO `tl_layout` (`id`, `pid`, `tstamp`, `name`, `rows`, `headerHeight`, `footerHeight`, `cols`, `widthLeft`, `widthRight`, `sections`, `framework`, `external`, `combineScripts`, `modules`, `template`, `minifyMarkup`, `lightboxSize`, `defaultImageDensities`, `viewport`, `titleTag`, `cssClass`, `onload`, `head`, `addJQuery`, `jquery`, `addMooTools`, `mootools`, `analytics`, `externalJs`, `scripts`, `script`, `static`, `width`, `align`, `newsfeeds`, `calendarfeeds`) VALUES (57, 17, 1644833953, 'Zweispaltiges Layout / Rechte Spalte / Schräger Header', '3rw', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '2clr', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:1:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:2:\"id\";s:0:\"\";s:8:\"template\";s:13:\"block_section\";s:8:\"position\";s:3:\"top\";}}', '', NULL, 1, 'a:8:{i:0;a:3:{s:3:\"mod\";s:3:\"382\";s:3:\"col\";s:6:\"header\";s:6:\"enable\";s:1:\"1\";}i:1;a:3:{s:3:\"mod\";s:1:\"0\";s:3:\"col\";s:6:\"header\";s:6:\"enable\";s:1:\"1\";}i:2;a:3:{s:3:\"mod\";s:3:\"384\";s:3:\"col\";s:5:\"right\";s:6:\"enable\";s:1:\"1\";}i:3;a:3:{s:3:\"mod\";s:1:\"0\";s:3:\"col\";s:5:\"right\";s:6:\"enable\";s:1:\"1\";}i:4;a:3:{s:3:\"mod\";s:1:\"0\";s:3:\"col\";s:4:\"main\";s:6:\"enable\";s:1:\"1\";}i:5;a:3:{s:3:\"mod\";s:3:\"392\";s:3:\"col\";s:6:\"footer\";s:6:\"enable\";s:1:\"1\";}i:6;a:3:{s:3:\"mod\";s:3:\"372\";s:3:\"col\";s:6:\"footer\";s:6:\"enable\";s:1:\"1\";}i:7;a:3:{s:3:\"mod\";s:3:\"371\";s:3:\"col\";s:6:\"footer\";s:6:\"enable\";s:1:\"1\";}}', 'fe_page_odd_right', 1, 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', 'width=device-width, initial-scale=1, shrink-to-fit=no', '', 'left-col-layout', '', NULL, 1, 'a:2:{i:0;s:11:\"j_accordion\";i:1;s:10:\"j_colorbox\";}', 0, NULL, NULL, NULL, 'a:1:{i:0;s:9:\"js_slider\";}', NULL, 0, '', 'center', NULL, NULL); +INSERT INTO `tl_layout` (`id`, `pid`, `tstamp`, `name`, `rows`, `headerHeight`, `footerHeight`, `cols`, `widthLeft`, `widthRight`, `sections`, `framework`, `external`, `combineScripts`, `modules`, `template`, `minifyMarkup`, `lightboxSize`, `defaultImageDensities`, `viewport`, `titleTag`, `cssClass`, `onload`, `head`, `addJQuery`, `jquery`, `addMooTools`, `mootools`, `analytics`, `externalJs`, `scripts`, `script`, `static`, `width`, `align`, `newsfeeds`, `calendarfeeds`) VALUES (58, 17, 1644834189, 'Dreispaltiges Layout / Linke und rechte Spalte / Schräger Header', '3rw', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '3cl', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:1:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:2:\"id\";s:0:\"\";s:8:\"template\";s:13:\"block_section\";s:8:\"position\";s:3:\"top\";}}', '', NULL, 1, 'a:9:{i:0;a:3:{s:3:\"mod\";s:3:\"382\";s:3:\"col\";s:6:\"header\";s:6:\"enable\";s:1:\"1\";}i:1;a:3:{s:3:\"mod\";s:1:\"0\";s:3:\"col\";s:6:\"header\";s:6:\"enable\";s:1:\"1\";}i:2;a:3:{s:3:\"mod\";s:3:\"384\";s:3:\"col\";s:4:\"left\";s:6:\"enable\";s:1:\"1\";}i:3;a:3:{s:3:\"mod\";s:1:\"0\";s:3:\"col\";s:4:\"left\";s:6:\"enable\";s:1:\"1\";}i:4;a:3:{s:3:\"mod\";s:1:\"0\";s:3:\"col\";s:5:\"right\";s:6:\"enable\";s:1:\"1\";}i:5;a:3:{s:3:\"mod\";s:1:\"0\";s:3:\"col\";s:4:\"main\";s:6:\"enable\";s:1:\"1\";}i:6;a:3:{s:3:\"mod\";s:3:\"392\";s:3:\"col\";s:6:\"footer\";s:6:\"enable\";s:1:\"1\";}i:7;a:3:{s:3:\"mod\";s:3:\"372\";s:3:\"col\";s:6:\"footer\";s:6:\"enable\";s:1:\"1\";}i:8;a:3:{s:3:\"mod\";s:3:\"371\";s:3:\"col\";s:6:\"footer\";s:6:\"enable\";s:1:\"1\";}}', 'fe_page_odd_three_columns', 1, 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', 'width=device-width, initial-scale=1, shrink-to-fit=no', '', 'left-right-col-layout', '', NULL, 1, 'a:2:{i:0;s:11:\"j_accordion\";i:1;s:10:\"j_colorbox\";}', 0, NULL, NULL, NULL, 'a:1:{i:0;s:9:\"js_slider\";}', NULL, 0, '', 'center', NULL, NULL); +INSERT INTO `tl_layout` (`id`, `pid`, `tstamp`, `name`, `rows`, `headerHeight`, `footerHeight`, `cols`, `widthLeft`, `widthRight`, `sections`, `framework`, `external`, `combineScripts`, `modules`, `template`, `minifyMarkup`, `lightboxSize`, `defaultImageDensities`, `viewport`, `titleTag`, `cssClass`, `onload`, `head`, `addJQuery`, `jquery`, `addMooTools`, `mootools`, `analytics`, `externalJs`, `scripts`, `script`, `static`, `width`, `align`, `newsfeeds`, `calendarfeeds`) VALUES (59, 17, 1643298853, 'Einspaltiges Layout / Gerader Header', '3rw', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '1cl', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '', 'a:1:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:2:\"id\";s:0:\"\";s:8:\"template\";s:13:\"block_section\";s:8:\"position\";s:3:\"top\";}}', '', NULL, 1, 'a:6:{i:0;a:3:{s:3:\"mod\";s:3:\"417\";s:3:\"col\";s:6:\"header\";s:6:\"enable\";s:1:\"1\";}i:1;a:3:{s:3:\"mod\";s:1:\"0\";s:3:\"col\";s:6:\"header\";s:6:\"enable\";s:1:\"1\";}i:2;a:3:{s:3:\"mod\";s:1:\"0\";s:3:\"col\";s:4:\"main\";s:6:\"enable\";s:1:\"1\";}i:3;a:3:{s:3:\"mod\";s:3:\"392\";s:3:\"col\";s:6:\"footer\";s:6:\"enable\";s:1:\"1\";}i:4;a:3:{s:3:\"mod\";s:3:\"372\";s:3:\"col\";s:6:\"footer\";s:6:\"enable\";s:1:\"1\";}i:5;a:3:{s:3:\"mod\";s:3:\"371\";s:3:\"col\";s:6:\"footer\";s:6:\"enable\";s:1:\"1\";}}', 'fe_page_odd', 1, 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', 'width=device-width, initial-scale=1, shrink-to-fit=no', '', '', '', NULL, 1, 'a:2:{i:0;s:11:\"j_accordion\";i:1;s:10:\"j_colorbox\";}', 0, NULL, NULL, NULL, 'a:1:{i:0;s:9:\"js_slider\";}', NULL, 0, '', 'center', NULL, NULL); + +INSERT INTO `tl_member` (`id`, `tstamp`, `firstname`, `lastname`, `dateOfBirth`, `gender`, `company`, `street`, `postal`, `city`, `state`, `country`, `phone`, `mobile`, `fax`, `email`, `website`, `language`, `groups`, `login`, `username`, `password`, `assignDir`, `homeDir`, `disable`, `start`, `stop`, `dateAdded`, `lastLogin`, `currentLogin`, `loginAttempts`, `locked`, `session`, `secret`, `useTwoFactor`, `backupCodes`, `trustedTokenVersion`, `newsletter`) VALUES (1, 1259754224, 'John', 'Smith', '238201200', 'male', '', '', '', '', '', '', '', '', '', 'j.smith@example.com', '', 'en', 'a:1:{i:0;s:1:\"2\";}', 1, 'j.smith', '$2y$10$r//Ke.SkjhB5W8PLFKMmweY5Bv2d4CbSm3f3sH8Q4UMp8QknQPe0y', 0, 0x00000000000000000000000000000000, 0, '', '', 1259754224, 1539337506, 1539337760, 0, 0, 'a:6:{s:7:\"referer\";a:2:{s:4:\"last\";s:17:\"members-area.html\";s:7:\"current\";s:9:\"user.html\";}s:10:\"captcha_20\";a:3:{s:3:\"sum\";i:8;s:3:\"key\";s:33:\"ceb79742be170f00826577727747ba0d7\";s:4:\"time\";i:1497147940;}s:15:\"captcha_captcha\";a:3:{s:3:\"sum\";i:11;s:3:\"key\";s:33:\"c41b679fe2c86aa30c1a01b0a043b46b7\";s:4:\"time\";i:1497147940;}s:21:\"captcha_lost_password\";a:3:{s:3:\"sum\";i:6;s:3:\"key\";s:33:\"cb957ec347e15383df19ccebb224de8a3\";s:4:\"time\";i:1511530383;}s:21:\"rocksolid_antispam_35\";a:3:{s:5:\"names\";a:3:{i:0;s:7:\"email-2\";i:1;s:3:\"url\";i:2;s:22:\"_KpKKb-LEmIaoF9qD0d8xQ\";}s:6:\"values\";a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:22:\"Q3j7jPXokkT4Fn0hjEZyfQ\";}s:4:\"time\";i:1524909956;}s:21:\"rocksolid_antispam_55\";a:3:{s:5:\"names\";a:3:{i:0;s:7:\"email-2\";i:1;s:3:\"url\";i:2;s:22:\"RZXM8B6uhKoCeuUm1LECqg\";}s:6:\"values\";a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:22:\"-eimzbyugMMHvG6f5EOOmQ\";}s:4:\"time\";i:1524910785;}}', NULL, 0, NULL, 0, ''); +INSERT INTO `tl_member` (`id`, `tstamp`, `firstname`, `lastname`, `dateOfBirth`, `gender`, `company`, `street`, `postal`, `city`, `state`, `country`, `phone`, `mobile`, `fax`, `email`, `website`, `language`, `groups`, `login`, `username`, `password`, `assignDir`, `homeDir`, `disable`, `start`, `stop`, `dateAdded`, `lastLogin`, `currentLogin`, `loginAttempts`, `locked`, `session`, `secret`, `useTwoFactor`, `backupCodes`, `trustedTokenVersion`, `newsletter`) VALUES (2, 1259754224, 'Donna', 'Evans', '191635200', 'female', '', '', '', '', '', '', '', '', '', 'd.evans@example.com', '', 'en', 'a:1:{i:0;s:1:\"1\";}', 1, 'd.evans', '$2y$10$3.ghpkaeW/ATUeSrhA8sgedbs4AdboKczBPV7IqyweXS6eCQ749pS', 0, 0x00000000000000000000000000000000, 0, '', '', 1259754224, 1516703824, 1553272691, 0, 0, 'a:3:{s:7:\"referer\";a:2:{s:4:\"last\";s:34:\"my-account.html?theme=cto-boostrap\";s:7:\"current\";s:30:\"logout.html?theme=cto-boostrap\";}s:10:\"captcha_20\";a:3:{s:3:\"sum\";i:11;s:3:\"key\";s:33:\"c06b2614e2c5a01d17ce2309ed485b3e3\";s:4:\"time\";i:1390142011;}s:21:\"captcha_lost_password\";a:3:{s:3:\"sum\";i:6;s:3:\"key\";s:33:\"c644f556725e50fe2bca81e7e05a71719\";s:4:\"time\";i:1401260677;}}', NULL, 0, NULL, 0, ''); +INSERT INTO `tl_member` (`id`, `tstamp`, `firstname`, `lastname`, `dateOfBirth`, `gender`, `company`, `street`, `postal`, `city`, `state`, `country`, `phone`, `mobile`, `fax`, `email`, `website`, `language`, `groups`, `login`, `username`, `password`, `assignDir`, `homeDir`, `disable`, `start`, `stop`, `dateAdded`, `lastLogin`, `currentLogin`, `loginAttempts`, `locked`, `session`, `secret`, `useTwoFactor`, `backupCodes`, `trustedTokenVersion`, `newsletter`) VALUES (3, 1259754224, 'John', 'Doe', '0', '', '', '', '', '', '', '', '', '', '', 'j.doe@example.com', '', 'en', 'a:2:{i:0;s:1:\"2\";i:1;s:1:\"1\";}', 1, 'j.doe', '7a86a8cf9d7510cc4661b217133f2eed37981b75', 0, 0x00000000000000000000000000000000, 0, '', '', 1259754224, 0, 0, 0, 0, 'a:1:{s:7:\"referer\";a:2:{s:4:\"last\";s:15:\"/history-1.html\";s:7:\"current\";s:1:\"/\";}}', NULL, 0, NULL, 0, ''); + +INSERT INTO `tl_member_group` (`id`, `tstamp`, `name`, `redirect`, `jumpTo`, `disable`, `start`, `stop`) VALUES (1, 1172600419, 'Violin Students', 1, 6, 0, '', ''); +INSERT INTO `tl_member_group` (`id`, `tstamp`, `name`, `redirect`, `jumpTo`, `disable`, `start`, `stop`) VALUES (2, 1172600394, 'Piano Students', 1, 7, 0, '', ''); +INSERT INTO `tl_member_group` (`id`, `tstamp`, `name`, `redirect`, `jumpTo`, `disable`, `start`, `stop`) VALUES (3, 1367401146, 'general Members', 1, 67, 0, '', ''); + +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (371, 17, 1523542648, 'Footer / Copyright', 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', 'html', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, 'a:0:{}', 0, 0, NULL, '
\n
\n {{theme::content::ODD02/05}}\n
\n
', 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, '', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (372, 17, 1637747701, 'Footer / Main', 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', 'html', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, 'a:0:{}', 0, 0, NULL, '\n', 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, '', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (373, 17, 1538491237, 'Footer / Navigation', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'customnav', 0, 0, 0, 0, 0, 0, 'nav_default', '', 'a:5:{i:0;i:92;i:1;i:118;i:2;i:101;i:3;i:134;i:4;i:139;}', 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, 'a:0:{}', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (375, 17, 1528378451, 'Kontaktformular', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:12:\"Ihre Anfrage\";}', 'form', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 6, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, 'a:0:{}', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (382, 17, 1644931859, 'Navigationsleiste mit Schräge', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'navigation', 0, 0, 0, 0, 0, 0, 'nav_default_odd', 'mod_navigation_odd_sloping', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, 'a:0:{}', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (383, 17, 1538393056, 'Sitemap', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'sitemap', 0, 0, 0, 0, 0, 0, 'nav_makler_sitemap', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, 'a:0:{}', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (384, 17, 1538494168, 'Unternavigation', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'navigation', 1, 3, 0, 0, 0, 0, 'nav_default', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, 'a:0:{}', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:6:\"subnav\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (386, 17, 1539185439, 'Module / News / Detailansicht', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', 'newsreader', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', 'a:1:{i:0;s:1:\"2\";}', 'all_items', '', 0, 'news_full_odd', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (387, 17, 1538492838, 'Module / News / Einfache Liste', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'newslist', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 4, 'simple', '', 'main', 0, 0, NULL, 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 0, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', 'a:1:{i:0;s:1:\"2\";}', 'all_items', '', 0, 'news_simple', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (388, 17, 1552645431, 'Module / News / Liste mit Bildern', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'newslist', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 4, 'simple', '', 'main', 0, 0, NULL, 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"23\";}', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 0, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', 'a:1:{i:0;s:1:\"2\";}', 'all_items', '', 0, 'news_latest_odd', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (389, 17, 1539183296, 'Module / News / Liste ohne Bilder', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'newslist', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 4, 'simple', '', 'main', 0, 0, NULL, 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 0, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', 'a:1:{i:0;s:1:\"2\";}', 'all_items', '', 0, 'news_short_odd', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (391, 17, 1539099775, 'Module / News / Startseite', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'newslist', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"23\";}', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 2, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', 'a:1:{i:0;s:1:\"2\";}', 'all_items', '', 0, 'news_latest_odd', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (392, 17, 1637747928, 'Newsletter / Abonnieren / Startseite', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:36:\"Jetzt unseren Newsletter abonnieren!\";}', 'subscribe', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 148, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 1, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"nl-footer skw-tl\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, 'a:1:{i:0;s:1:\"4\";}', NULL, 1, 'Sie haben folgende Verteiler auf ##domain## abonniert:\n\n##channels##\n\nBitte klicken Sie http://##domain##/newsletter-aktivierung.html?token=##token## um Ihr Abonnement zu aktivieren. Falls Sie die Bestellung nicht selbst getätigt haben, bitte ignorieren Sie diese E-Mail.\n\nDie Einwilligung kann jederzeit auf http://##domain##/newsletter-kuendigung.html widerrufen werden.', NULL, 'nl_default_footer_odd', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (393, 17, 1638439567, 'Module / News / Detailansicht / Kopfbild', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', 'newsreader', 0, 0, 0, 0, 0, 0, '', 'mod_newsreader_odd_header', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', 'a:1:{i:0;s:1:\"2\";}', 'all_items', '', 0, 'news_full_header_odd', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (394, 17, 1539331627, 'Module / Events / Detailansicht', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', 'eventreader', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', 'a:1:{i:0;s:1:\"4\";}', 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full_odd', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (395, 17, 1552650236, 'Module / Events / Eventliste mit Bildern', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:0:\"\";}', 'eventlist', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 4, 'simple', '', 'main', 0, 0, NULL, 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"23\";}', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', 'a:1:{i:0;s:1:\"4\";}', 1, 0, 1, 'next_two', 0, 'ascending', 394, 0, 'event_teaser_odd', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (396, 17, 1539330004, 'Module / Events / Eventliste ohne Bilder', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'eventlist', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 4, 'simple', '', 'main', 0, 0, NULL, 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', 'a:1:{i:0;s:1:\"4\";}', 1, 0, 1, 'next_two', 0, 'ascending', 394, 0, 'event_list_odd', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (397, 17, 1539330812, 'Module / Events / Eventliste Upcoming', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'eventlist', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 4, 'simple', '', 'main', 0, 0, NULL, 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', 'a:1:{i:0;s:1:\"4\";}', 1, 0, 1, 'next_next_year', 0, 'ascending', 394, 0, 'event_upcoming', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (398, 17, 1644935762, 'Module / Events / Kalender', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:8:\"Kalender\";}', 'calendar', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 110, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', 'a:1:{i:0;s:1:\"4\";}', 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default_odd', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (399, 17, 1539186001, 'Module / Events / Mini-Kalender', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Mini-Kalender\";}', 'calendar', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 109, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', 'a:1:{i:0;s:1:\"4\";}', 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_mini', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (400, 17, 1539331273, 'Module / Events / Detailansicht / Kopfbild', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', 'eventreader', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', 'a:1:{i:0;s:1:\"4\";}', 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full_header_odd', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (401, 17, 1539334988, 'Module / User / Automatischer Logout', '', 'logout', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (402, 17, 1539334988, 'Module / User / Konto schließen', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:16:\"Konto schließen\";}', 'closeAccount', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, 'close_deactivate', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (403, 17, 1539335128, 'Module / User / Login-Formular', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:14:\"Login-Formular\";}', 'login', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 130, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (404, 17, 1539334988, 'Module / User / Passwort ändern', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:16:\"Passwort ändern\";}', 'changePassword', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (405, 17, 1539334988, 'Module / User / Passwort vergessen', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:18:\"Passwort vergessen\";}', 'lostPassword', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, 'Sie haben ein neues Passwort für ##domain## angefordert.\n\nBitte klicken Sie ##link## um das neue Passwort festzulegen. Wenn Sie diese E-Mail nicht angefordert haben, kontaktieren Sie bitte den Administrator der Webseite.', NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (406, 17, 1644936081, 'Module / User / Personendaten', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Personendaten\";}', 'personalData', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, 'a:20:{i:0;s:9:\"firstname\";i:1;s:8:\"lastname\";i:2;s:11:\"dateOfBirth\";i:3;s:6:\"gender\";i:4;s:7:\"company\";i:5;s:6:\"street\";i:6;s:6:\"postal\";i:7;s:4:\"city\";i:8;s:5:\"state\";i:9;s:7:\"country\";i:10;s:5:\"phone\";i:11;s:6:\"mobile\";i:12;s:3:\"fax\";i:13;s:5:\"email\";i:14;s:7:\"website\";i:15;s:8:\"language\";i:16;s:6:\"groups\";i:17;s:8:\"username\";i:18;s:8:\"password\";i:19;s:10:\"newsletter\";}', 'member_grouped', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (407, 17, 1644936092, 'Module / User / Registrierung', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Registrierung\";}', 'registration', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, 'a:20:{i:0;s:9:\"firstname\";i:1;s:8:\"lastname\";i:2;s:11:\"dateOfBirth\";i:3;s:6:\"gender\";i:4;s:7:\"company\";i:5;s:6:\"street\";i:6;s:6:\"postal\";i:7;s:4:\"city\";i:8;s:5:\"state\";i:9;s:7:\"country\";i:10;s:5:\"phone\";i:11;s:6:\"mobile\";i:12;s:3:\"fax\";i:13;s:5:\"email\";i:14;s:7:\"website\";i:15;s:8:\"language\";i:16;s:6:\"groups\";i:17;s:8:\"username\";i:18;s:8:\"password\";i:19;s:10:\"newsletter\";}', 'member_grouped', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 1, 0, '', 0, 0, NULL, 1, 0, 'Vielen Dank für Ihre Registrierung auf ##domain##.\n\nBitte klicken Sie ##link## um Ihre Registrierung abzuschließen und Ihr Konto zu aktivieren. Wenn Sie keinen Zugang angefordert haben, ignorieren Sie bitte diese E-Mail.', NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (408, 17, 1539344139, 'Module / Newsletter / Abonnieren', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:21:\"Newsletter abonnieren\";}', 'subscribe', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 148, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, 'a:1:{i:0;s:1:\"4\";}', NULL, 0, 'Sie haben folgende Verteiler auf ##domain## abonniert:\n\n##channels##\n\nBitte klicken Sie http://##domain##/newsletter-aktivierung.html?token=##token## um Ihr Abonnement zu aktivieren. Falls Sie die Bestellung nicht selbst getätigt haben, bitte ignorieren Sie diese E-Mail.\n\nDie Einwilligung kann jederzeit auf http://##domain##/newsletter-kuendigung.html widerrufen werden.', NULL, 'nl_default_odd', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (409, 17, 1539339179, 'Module / Newsletter / Kündigen', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Newsletter kündigen\";}', 'unsubscribe', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, 'a:1:{i:0;s:1:\"4\";}', NULL, 0, NULL, 'Sie haben folgende Abonnements auf ##domain## gekündigt:\n\n##channels##', 'nl_default_odd', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (412, 17, 1539344450, 'Module / FAQ / FAQ-Leser', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', 'faqreader', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, 'a:1:{i:0;s:1:\"5\";}', 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (413, 17, 1539344463, 'Module / FAQ / FAQ-Liste', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'faqlist', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, 'a:1:{i:0;s:1:\"5\";}', 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (414, 17, 1539345484, 'Module / FAQ / FAQ-Seite', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'faqpage', 0, 0, 0, 0, 0, 0, '', 'mod_faqpage_odd', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, 'a:1:{i:0;s:1:\"5\";}', 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (415, 17, 1539347848, 'Module / Suchmaschine', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', 'search', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, 'a:2:{i:0;s:2:\"48\";i:1;s:4:\"1000\";}', 0, 0, 'advanced', 'search_default', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (417, 17, 1644831836, 'Navigationsleiste ohne Schräge', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'navigation', 0, 0, 0, 0, 0, 0, 'nav_default_odd', 'mod_navigation_odd', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, 'a:0:{}', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (418, 17, 1560846305, 'Modaler Dialog / Text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Überschrift\";}', 'ct_modal', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', 'Modaler Dialog mit Text', '', '

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

', '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (419, 17, 1560846342, 'Modaler Dialog / Text / vertikal zentriert', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Überschrift\";}', 'ct_modal', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', 'Modaler Dialog mit Text, vertikal zentriert', '', '

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

', '', 'modal-dialog-centered', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (420, 17, 1560846329, 'Modaler Dialog / Text / langer Text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Überschrift\";}', 'ct_modal', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', 'Modaler Dialog mit Text, mit Scrolling', '', '

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.+Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.+Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

', '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (421, 17, 1560846373, 'Modaler Dialog / Formular', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Überschrift\";}', 'ct_modal', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', 'Modaler Dialog mit Formular', '', '

{{insert_form::8}}

', '', 'modal-dialog-centered modal-lg', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (422, 17, 1560846353, 'Modaler Dialog / Text / vertikal zentriert und breiter', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Überschrift\";}', 'ct_modal', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, 'com_default', NULL, 'all_items', '', 0, 'news_latest', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', 'list_default', 'info_default', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, 'event_full', 'cal_default', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, 'nl_simple', 'Modaler Dialog mit Text, vertikal zentriert und breiter', '', '

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

', '', 'modal-dialog-centered modal-lg', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `faq_categories`, `faq_readerModule`, `com_order`, `com_moderate`, `com_bbcode`, `com_requireLogin`, `com_disableCaptcha`, `com_template`, `news_archives`, `news_featured`, `news_jumpToCurrent`, `news_readerModule`, `news_template`, `news_format`, `news_startDay`, `news_order`, `news_showQuantity`, `list_table`, `list_fields`, `list_where`, `list_search`, `list_sort`, `list_info`, `list_info_where`, `list_layout`, `list_info_layout`, `cal_calendar`, `cal_noSpan`, `cal_hideRunning`, `cal_startDay`, `cal_format`, `cal_ignoreDynamic`, `cal_order`, `cal_readerModule`, `cal_limit`, `cal_template`, `cal_ctemplate`, `cal_showQuantity`, `cal_featured`, `newsletters`, `nl_channels`, `nl_text`, `nl_hideChannels`, `nl_subscribe`, `nl_unsubscribe`, `nl_template`, `modal_linkText`, `modal_linkClass`, `modal_text`, `modal_customTpl`, `modal_class`, `unfilteredHtml`) VALUES (423, 17, 1638526626, 'Social Feed', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'newslist', 0, 0, 0, 0, 0, 0, '', 'mod_newslist_social_feed', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '', 4, 0, 'simple', '', 'main', 0, 0, NULL, 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 0, 0, NULL, NULL, 3600, NULL, '', 15, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, NULL, 0, 'ascending', 0, 0, 0, 0, '', 'a:1:{i:0;s:1:\"3\";}', 'all_items', '', 0, 'news_social_feed_odd', 'news_month', 0, 'order_date_desc', 0, '', '', '', '', '', '', '', '', '', NULL, 0, 0, 1, 'cal_month', 0, 'ascending', 0, 0, '', '', 0, 'all_items', NULL, NULL, NULL, 0, NULL, NULL, '', '', '', NULL, '', '', NULL); + +INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `featured`, `alias`, `author`, `date`, `time`, `pageTitle`, `robots`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `linkText`) VALUES (10, 2, 1552644617, 'Wohnhaus in der Görnischen Gasse', 0, 'wohnhaus-in-der-görnischen-gasse', 1, 1517047500, 1517047500, '', '', NULL, 'Tourismus', '

Dieses Wohnhaus im Stil der Renaissance entstand um 1580. Noch heute sind aus dieser Zeit zahlreiche Schmuckelemente am Haus erhalten: Tür- und Fenstergewände, Konsolsteine und Deckengewölbe.

', 1, 0, 0xb525bf9c467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', 0, '', 'above', 0, NULL, 'default', 0, 0, '', 0, '', 0, 1, '', '', ''); +INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `featured`, `alias`, `author`, `date`, `time`, `pageTitle`, `robots`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `linkText`) VALUES (11, 2, 1552644500, 'Wohnhaus in der Rosengasse', 0, 'wohnhaus-in-der-rosengasse', 1, 1517058300, 1517058300, '', '', NULL, 'Wohnen', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', 1, 0, 0xb81fbc97467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', 0, '', 'above', 0, NULL, 'default', 0, 0, '', 0, '', 0, 1, '', '', ''); +INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `featured`, `alias`, `author`, `date`, `time`, `pageTitle`, `robots`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `linkText`) VALUES (12, 2, 1552645851, 'Kasernengelände in Meißen-Bohnitzsch', 0, 'kasernengelände-in-meißen-bohnitzsch', 1, 1510844280, 1510844280, '', '', NULL, 'Wissenswertes', '

Das Kasernengelände in Meißen-Bohnitzsch wurde 1936 angelegt und wurde ab Mai 1945 von der Sowjetunion genutzt. Unter anderem war das 7. Garde-Panzerregiment der GSSD hier untergebracht.

', 1, 0, 0xcbc4a14c467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', 0, '', 'above', 0, NULL, 'default', 0, 0, '', 0, '', 0, 1, '', '', ''); +INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `featured`, `alias`, `author`, `date`, `time`, `pageTitle`, `robots`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `linkText`) VALUES (23, 2, 1552645482, 'Ziegelei am Roten Haus', 0, 'ziegelei-am-roten-haus', 1, 1516965840, 1516965840, '', '', NULL, 'Industrie', '

Die Ziegelei am Roten Haus war die letzte ihrer Art in Meißen, sie war nach fast 140 Jahren Produktion 1993 geschlossen worden.

', 1, 0, 0xc433b88f467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', 0, '', 'above', 0, NULL, 'default', 0, 0, '', 0, '', 0, 1, '', '', ''); +INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `featured`, `alias`, `author`, `date`, `time`, `pageTitle`, `robots`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `linkText`) VALUES (24, 2, 1552645464, 'Landkrankenhaus', 0, 'landkrankenhaus', 1, 1516965840, 1516965840, '', '', NULL, 'Wissenswertes', '

Das ehemalige Landkrankenhaus ist seit dem Neubau der Elblandklinik in Meißen-Bohnitzsch ungenutzt.

', 1, 0, 0xce7c80c2467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', 0, '', 'above', 0, NULL, 'default', 0, 0, '', 0, '', 0, 1, '', '', ''); +INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `featured`, `alias`, `author`, `date`, `time`, `pageTitle`, `robots`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `linkText`) VALUES (25, 2, 1552645695, 'Herrenhaus in der Dresdner Straße', 0, 'herrenhaus-in-der-dresdner-straße', 1, 1516965840, 1516965840, '', '', NULL, 'Wissenswertes', '

Zum \"Elbdom\"-Areal gehörte in den letzten 20 Jahren auch das Grundstück der Unternehmerfamilie Clemens Kurtz in der Dresdner Straße 19.

', 1, 0, 0xd285349b467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', 0, '', 'above', 0, NULL, 'default', 0, 0, '', 0, '', 0, 1, '', '', ''); +INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `featured`, `alias`, `author`, `date`, `time`, `pageTitle`, `robots`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `linkText`) VALUES (26, 2, 1552645808, 'Cöllner Schlösschen', 0, 'cöllner-schlösschen', 1, 1516965840, 1516965840, '', '', NULL, 'Wissenswertes', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', 1, 0, 0xc6eaaf6d467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', 0, '', 'above', 0, NULL, 'default', 0, 0, '', 0, '', 0, 1, '', '', ''); +INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `featured`, `alias`, `author`, `date`, `time`, `pageTitle`, `robots`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `linkText`) VALUES (27, 3, 1638524413, 'schneller. leichter. klimafreundlicher. composer. ...', 0, '', 0, 1637664654, 1637664654, '', '', NULL, '', 'schneller. leichter. klimafreundlicher. composer.
Mega! 👏

#contao #composer #greenweb', 1, 0, NULL, '', '', '', '', 0, '', 'above', 0, NULL, 'external', 0, 0, 'https://www.linkedin.com/feed/update/urn:li:activity:6868863409782345728', 1, '', 0, 1, '', '', ''); +INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `featured`, `alias`, `author`, `date`, `time`, `pageTitle`, `robots`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `linkText`) VALUES (28, 3, 1638524413, 'Wir sind im IHK ecoFinder!\n\nDie pdir GmbH ist nun ...', 0, '', 0, 1637663134, 1637663134, '', '', NULL, '', 'Wir sind im IHK ecoFinder!

Die pdir GmbH ist nun offiziell eingetragen in Deutschlands größtem Umweltportal - dem IHK ecoFinder. In diesem findet man kompetente Anbieter von Produkten und Dienstleistungen aus der Umwelt- und Energiebranche - schnell, präzise und bundesweit. Wir haben uns zum Thema klimafreundliche Webseiten registrieren lassen 🌱💪

https://lnkd.in/ebG-aKpT

#ihk #ecofriendly #Klimakrise #klimafreundlich #webseite #digitalagentur #greenweb #greenwebdesign #sustainableweb #sustainablewebsite #sustainablewebdesign #klimafreundlichesinternet #klimafreundlichewebseite #pdir #01contaotheme', 1, 0, 0x03978afc541d11ec8ee0e0d55e59bff3, '', '', '', '', 0, '', 'above', 0, NULL, 'external', 0, 0, 'https://www.linkedin.com/feed/update/urn:li:activity:6868857032938721280', 1, '', 0, 1, '', '', ''); +INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `featured`, `alias`, `author`, `date`, `time`, `pageTitle`, `robots`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `linkText`) VALUES (29, 3, 1638524413, 'Jaja - ab und zu wagen wir uns auch noch in die an ...', 0, '', 0, 1636452825, 1636452825, '', '', NULL, '', 'Jaja - ab und zu wagen wir uns auch noch in die analoge Welt und erschaffen das ein oder andere Printprodukt. So richtig zum anfassen - wie die neuen Gutscheine der @diehafenmeister! Diese sind mit UV-Lack vereldelt sogar echt exklusiv geworden - eben passend zur Location ;)

Ach übrigens... Weihnachten steht ja bald vor der Tür und da wäre so ein Gutschein für ein außergewöhnliches Grill-Event bei den Hafenmeistern doch vielleicht ein tolles Geschenk?!?

Von uns jedenfalls wärmstens zu empfehlen! 🤩🤤🥳

👉 https://lnkd.in/eCyFS7nf

#printdesign #flyer #gutschein #eventlocation #dresden #weihnachtsgeschenk #grillevent', 1, 0, 0x03978af5541d11ec8ee0e0d55e59bff3, '', '', '', '', 0, '', 'above', 0, NULL, 'external', 0, 0, 'https://www.linkedin.com/feed/update/urn:li:activity:6863780629511770112', 1, '', 0, 1, '', '', ''); +INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `featured`, `alias`, `author`, `date`, `time`, `pageTitle`, `robots`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `linkText`) VALUES (30, 3, 1638524414, 'Zum heutigen Weltinternettag mal ein paar Worte in ...', 0, '', 0, 1635498294, 1635498294, '', '', NULL, '', 'Zum heutigen Weltinternettag mal ein paar Worte in Richtung Nachhaltigkeit: 🌱

Das Internet verbraucht Strom – und zwar eine Menge. Denn Rechenleistung, Kühlung und Stromversorgung von Tausenden von Servern kosten täglich Unmengen an Energie und verursachen einen enormen CO₂ Ausstoß. Wusstet ihr, dass eine durchschnittliche Webseite mit ca. 10.000 Seitenaufrufen im Monat um die 200 kg CO₂ pro Jahr verantwortet ?!?

Im gleichen Zeitraum bindet ein Baum im Schnitt ca. 11 Kg CO₂. Es müssten also ca. 20 Bäume gepflanzt werden, um das online CO₂ einer einzigen Website durch Bäume wieder zu kompensieren! Puh - das hört sich ziemlich viel an, oder?

Genau das haben wir uns auch gedacht und beschäftigten uns deshalb seit einiger Zeit mit der Erstellung klimafreundlicher Webseiten. Und wir haben festgestellt: Energieeffizientes Webdesign ist mehr als nur umweltfreundlich - es ist automatisch auch performanter, nutzerfreundlicher & SEO-optimierter! 💪

Wie das geht? Erklären wir dir hier:
https://lnkd.in/eRUPN27z

#weltinternettag #greenweb #greenwebdesign #sustainableweb #sustainablewebsite #sustainablewebdesign #klimafreundlichesinternet #klimafreundlichewebseite #webdesign #webdesignagency #webdevelopment #webdevelopmentagency #Klimakrise #klimakrise #pdir #01contaotheme', 1, 0, 0x03978aeb541d11ec8ee0e0d55e59bff3, '', '', '', '', 0, '', 'above', 0, NULL, 'external', 0, 0, 'https://www.linkedin.com/feed/update/urn:li:activity:6859777036349702144', 1, '', 0, 1, '', '', ''); +INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `featured`, `alias`, `author`, `date`, `time`, `pageTitle`, `robots`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `linkText`) VALUES (31, 3, 1638524414, 'Tutorial-Video zum 0.1 Isotope Contao Theme verfüg ...', 0, '', 0, 1626425582, 1626425582, '', '', NULL, '', 'Tutorial-Video zum 0.1 Isotope Contao Theme verfügbar!
Marvin erklärt euch, wie man mit der Contao Shop-Erweiterung Isotope und dem 0.1 Theme einen schicken Webshop erstellt.

Macht er echt gut, schaut mal rein!
Danke Marvin!

https://lnkd.in/eMs6CpE

#webshop #contaocms #contao #isotopeecommerce #contaowebsite #contaowebshop #onlineshop #ecommerce #pdir #01contaotheme', 1, 0, 0x03978ae4541d11ec8ee0e0d55e59bff3, '', '', '', '', 0, '', 'above', 0, NULL, 'external', 0, 0, 'https://www.linkedin.com/feed/update/urn:li:activity:6821723323286790144', 1, '', 0, 1, '', '', ''); +INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `featured`, `alias`, `author`, `date`, `time`, `pageTitle`, `robots`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `linkText`) VALUES (32, 3, 1638524414, 'Neues Template für ausgefallene Online Shops!\nUnse ...', 0, '', 0, 1624609850, 1624609850, '', '', NULL, '', 'Neues Template für ausgefallene Online Shops!
Unser \"schrägstes\" Contao Theme \"ODD\" kann nun auch Produkte präsentieren...

In der Shop-Version steht ein vorkonfigurierter Isotope eCommerce-Shop inkl. optimierter Startseite & typischer Shop-Elemente, wie Themenwelten, Marken und Produktslider im ausgefallenen ODD Style zur Verfügung.

Hier gehts zur DEMO:
https://lnkd.in/eCHGXR8

Hol dir das ODD Shop-Theme und viele weitere schicke Contao Themes hier:
https://contao-themes.net

#onlineshop #ecommerce #websitedesign #websitetemplate #webshop #shoptemplate #onlineshoptemplate
#contao #contaocms #isotopeecommerce #contaoisotope
#pdir #contaotheme #oddcontaotheme #odd', 1, 0, 0x03978adc541d11ec8ee0e0d55e59bff3, '', '', '', '', 0, '', 'above', 0, NULL, 'external', 0, 0, 'https://www.linkedin.com/feed/update/urn:li:activity:6814107594328748032', 1, '', 0, 1, '', '', ''); +INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `featured`, `alias`, `author`, `date`, `time`, `pageTitle`, `robots`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `linkText`) VALUES (33, 3, 1638524415, 'Hey! Kennst du schon den pdir Newsletter?\nWas es d ...', 0, '', 0, 1623773734, 1623773734, '', '', NULL, '', 'Hey! Kennst du schon den pdir Newsletter?
Was es da drin spannendes gibt und warum du den brauchen solltest fragst du dich?

* Du bekommst alle unsere Freebies (nützliche Checklisten, gratis E-Books, ...) als aller erstes
* Du erhältst stets aktuelle Updates zu Themes und Extensions
* Du wirst stets mit wertvollen Tipps, Tricks und unseren Learnings zum Thema Web-Entwicklung und Contao versorgt
* Du bekommst einen Einblick in unseren Agenturalltag und die ein oder andere Anekdote zu lesen
* Manchmal versenden wir auch Hundebaby-Bilder
aber nur selten...

Klingt gut? Dann meld dich hier kostenlos und unverbindlich zum pdir Newsletter an:

https://pdir.de/newsletter

Kein Spam, niemals. Versprochen.

#newsletter #contao #webentwicklung #webdevelopment #websitetheme #websitetemplates #pdir #tippsundtricks #webagenturalltag #bürohund', 1, 0, 0x03978ad4541d11ec8ee0e0d55e59bff3, '', '', '', '', 0, '', 'above', 0, NULL, 'external', 0, 0, 'https://www.linkedin.com/feed/update/urn:li:activity:6810600668986974208', 1, '', 0, 1, '', '', ''); +INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `featured`, `alias`, `author`, `date`, `time`, `pageTitle`, `robots`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `linkText`) VALUES (34, 3, 1638524415, 'Online-Shop-Entwickler aufgepasst:\nWir haben dem 0 ...', 0, '', 0, 1622715433, 1622715433, '', '', NULL, '', 'Online-Shop-Entwickler aufgepasst:
Wir haben dem 0.1 Isoptope Bundle eine schicke Shop-Startseite spendiert - mit vorkonfigurierten Shop-Elementen, wie Themenwelten, Markenlogos und Produktslider im klimafreundlichen 0.1 Stil:

https://lnkd.in/ehSiNUp

Einen schicken, performanten Online-Shop mit Contao aufsetzen? Sollte also kein Problem mehr sein - los gehts!

Das Theme ist auch in der Shopversion (mit 0.46g C02) übrigens immernoch klimafreundlich

#onlineshop #ecommerce #websitedesign #websitetemplate #webshop #shoptemplate
#contao #contaocms #isotopeecommerce #contaoisotope
#pdir #contaotheme #01contaotheme #greenweb #Klimakrise #saveenergy #sustainableweb #sustainablewebdesign', 1, 0, 0x03978ac8541d11ec8ee0e0d55e59bff3, '', '', '', '', 0, '', 'above', 0, NULL, 'external', 0, 0, 'https://www.linkedin.com/feed/update/urn:li:activity:6806161831955111936', 1, '', 0, 1, '', '', ''); +INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `featured`, `alias`, `author`, `date`, `time`, `pageTitle`, `robots`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `linkText`) VALUES (35, 3, 1638524420, '3 Jahre DSGVO 😱 und was haben wir daraus gelernt?! ...', 0, '', 0, 1621949572, 1621949572, '', '', NULL, '', '3 Jahre DSGVO 😱 und was haben wir daraus gelernt?!

Regeln zum Datenschutz gab es auch bereits zu genüge vor Einführung der DSGVO im Mai 2018, aber in diesem Zuge bekam das Thema Datenschutz in Deutschland nochmal eine ganz andere Aufmerksamkeit und es herrschte fortan viel Unsicherheit und Verwirrung. Im Nachhinein lässt sich sagen, dass die ganze Aufregung wohl etwas übertrieben war, die Abmahnwellen bleiben aus, Klarheit über die nun geltenden Regeln allerdings ebenfalls, denn viele sind immer noch schwammig und werden von verschiedenen Experten unterschiedlich ausgelegt.

Was wir davon halten, daraus gelernt haben und uns die Erfahrung gezeigt hat, haben wir dir mal in einem Blogbeitrag festgehalten:

👉 https://lnkd.in/dvsWhzp

#DSGVO #datenschutz #datenschutzrecht #pdir #checkliste #freebie', 1, 0, 0x03978a95541d11ec8ee0e0d55e59bff3, '', '', '', '', 0, '', 'above', 0, NULL, 'external', 0, 0, 'https://www.linkedin.com/feed/update/urn:li:activity:6802949578397118464', 1, '', 0, 1, '', '', ''); +INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `featured`, `alias`, `author`, `date`, `time`, `pageTitle`, `robots`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `linkText`) VALUES (36, 3, 1638524420, 'Vom GEBEN und NEHMEN\n\nEs ist nicht immer einfach a ...', 0, '', 0, 1621348850, 1621348850, '', '', NULL, '', 'Vom GEBEN und NEHMEN

Es ist nicht immer einfach als Webentwickler & Dienstleister neben der Entwicklungsarbeit guten Support für die eigenen Produkte zu liefern - aber wir geben stets unser Bestes... und freuen uns wie Schnitzel, wenn unsere Kunden es uns danken.
Deshalb heute ein DANKE an alle Kunden zurück, die uns in letzter Zeit so fleißg positiv bei Google Business bewertet haben!!!

Wenn auch du in dieser Liste erscheinen willt, lass uns gern eine Bewertung da ;)
> https://lnkd.in/eaVbArw
Danke!

#googlerezension #testimonial #businessbewertung #kundenfeedback', 1, 0, 0x08043c64541d11ec8ee0e0d55e59bff3, '', '', '', '', 0, '', 'above', 0, NULL, 'external', 0, 0, 'https://www.linkedin.com/feed/update/urn:li:activity:6800429967768391681', 1, '', 0, 1, '', '', ''); + +INSERT INTO `tl_news_archive` (`id`, `tstamp`, `title`, `jumpTo`, `protected`, `groups`, `allowComments`, `notify`, `sortOrder`, `perPage`, `moderate`, `bbcode`, `requireLogin`, `disableCaptcha`) VALUES (2, 1638374553, 'Odd / Blog', 108, 0, NULL, 1, 'notify_admin', 'ascending', 0, 0, 0, 0, 0); +INSERT INTO `tl_news_archive` (`id`, `tstamp`, `title`, `jumpTo`, `protected`, `groups`, `allowComments`, `notify`, `sortOrder`, `perPage`, `moderate`, `bbcode`, `requireLogin`, `disableCaptcha`) VALUES (3, 1638523142, 'LinkedIn', 90, 0, NULL, 0, 'notify_admin', 'ascending', 0, 0, 0, 0, 0); + +INSERT INTO `tl_newsletter` (`id`, `pid`, `tstamp`, `subject`, `alias`, `content`, `text`, `addFile`, `files`, `template`, `sendText`, `externalImages`, `mailerTransport`, `sender`, `senderName`, `sent`, `date`) VALUES (4, 4, 1511793022, 'Keeping everyone up to date', '', '

Keeping everyone up to date

\n

Contao has a built in Newsletter administration system. It offers some features to create newsletters on a regular basis. Your are able to set up an HTML template, create your newsletters just as plain text or use both functionalities. Even attachments or external images can optionally be integrated.

SATURDAY
December 24th, 2013
7:30 pm

\n

SUNDAY
December 26th, 2013
3:00 pm

\n

Tickets $20[nbsp]to[nbsp]$40

\n

Call (416) 872-4255

', '', 0, 'a:1:{i:0;N;}', 'mail_default', 0, 0, '', '', '', 1, '1511949450'); +INSERT INTO `tl_newsletter` (`id`, `pid`, `tstamp`, `subject`, `alias`, `content`, `text`, `addFile`, `files`, `template`, `sendText`, `externalImages`, `mailerTransport`, `sender`, `senderName`, `sent`, `date`) VALUES (5, 4, 1511948990, 'The right newsletter for everyone', 'the-right-newsletter-for-everyone', '

The right newsletter for everyone

\n

The newsletter functionalities of Contao allows you to create different \"Channels\". So it\'s possible to adress visitors or regular users of your site with their specific interests. Before you send a newsletter to a list of subscribers you can make the use of the option to send a preview. Better check your newsletters on all mail clients. Some of you might know that a lot of mail servers just allow a certain amount of Emails sent within a time-amount: The \"Mails per cycle\" function will help here with larger lists.

SATURDAY
December 24th, 2013
7:30 pm

\n

SUNDAY
December 26th, 2013
3:00 pm

\n

Tickets $20[nbsp]to[nbsp]$40

\n

Call (416) 872-4255

', 'TEXT Content', 0, 'a:1:{i:0;N;}', 'mail_default', 0, 0, '', '', '', 0, '1360273849'); + +INSERT INTO `tl_newsletter_channel` (`id`, `tstamp`, `title`, `jumpTo`, `template`, `mailerTransport`, `sender`, `senderName`) VALUES (4, 1539339319, 'Odd / Newsletter', 136, 'mail_default', '', 'info@example.de', 'Contao Themes'); + +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (90, 0, 384, 1664480550, 'odd - contao theme', 'root', 'odd', 0, 0, 'odd - contao theme', 'de', '', NULL, 'permanent', 0, 0, '', 0, '', '', '', 1, 0, NULL, NULL, 0, '', 0, '', '', '', 'd.m.Y', 'H:i', 'd.m.Y H:i', '', 1, '', '.html', 1, 0, 0, NULL, 1, 55, 0, 0, 604800, 0, 604800, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 0, '', '', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', 'bundles/contaoddadvancedclasses/sets/bootstrap4.json'); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (91, 90, 128, 1540219874, 'Start', 'regular', 'index', 0, 0, 'Odd Theme Demo', '', 'index,follow', 'Auf dieser Seite finden Sie Demo-Inhalte des Odd Themes für das Content-Management-System Contao.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 0, '', 'map_default', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (92, 90, 192, 1553272043, 'Module', 'forward', 'module', 0, 0, '', '', 'index,follow', NULL, 'permanent', 93, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 1, 56, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 0, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (93, 92, 128, 1553272043, 'News', 'regular', 'news', 0, 0, 'News - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie Newsarchive eingebunden werden können.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (101, 90, 528, 1555059486, 'Elemente', 'forward', 'elemente', 0, 0, '', '', 'index,follow', NULL, 'permanent', 113, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 1, 56, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 0, 'theme-inspector', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (105, 90, 896, 1540219814, 'ODD Elements', 'folder', '', 0, 0, '', '', 'noindex,nofollow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 1, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (106, 105, 128, 1538489256, '01 / Kopfzeile', 'regular', '01-kopfzeile', 0, 0, '', '', 'index,follow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 1, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (107, 105, 256, 1538489266, '02 / Fußzeile', 'regular', '02-fußzeile', 0, 0, '', '', 'index,follow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 1, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (108, 93, 128, 1553863983, 'News Detailansicht', 'regular', 'news-details', 0, 0, '', '', 'noindex,nofollow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 50, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 1, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (109, 92, 192, 1555073786, 'Events', 'regular', 'module/events', 0, 0, 'Events - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie Eventlisten eingebunden werden können.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (110, 109, 128, 1553272043, 'Event Detailansicht', 'regular', 'event-details', 0, 0, '', '', 'noindex,nofollow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 1, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (113, 101, 128, 1553272043, 'Textelemente', 'regular', 'inhaltselemente/textelemente', 0, 0, 'Textelemente - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie verschiedene Beispiele wie Textelemente eingebunden werden können.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (114, 101, 256, 1553272043, 'Akkordion', 'regular', 'inhaltselemente/akkordion', 0, 0, 'Akkordion - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel wie ein Akkordion-Element eingebunden werden kann.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (115, 101, 384, 1553272043, 'Content Slider', 'regular', 'inhaltselemente/content-slider', 0, 0, 'Content Slider - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie verschiedene Beispiele wie Content-Slider eingebunden werden können.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 1, 55, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (116, 101, 512, 1553272043, 'Media-Elemente', 'regular', 'inhaltselemente/media-elemente', 0, 0, 'Media-Elemente - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie verschiedene Beispiele wie Media-Elemente, wie z. B. Bildergalerien oder Videos eingebunden werden können.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (118, 90, 352, 1555062182, 'Layouts', 'forward', 'layouts', 0, 0, '', '', 'index,follow', NULL, 'permanent', 161, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 0, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (120, 159, 128, 1555059417, 'Layout mit linker Spalte', 'regular', 'layouts/layout-mit-linker-spalte', 0, 0, 'Layout mit linker Spalte - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel einer Seite mit einer linken Spalte.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 1, 56, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (121, 159, 256, 1555059417, 'Layout mit rechter Spalte', 'regular', 'layouts/layout-mit-rechter-spalte', 0, 0, 'Layout mit rechter Spalte - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel einer Seite mit einer rechten Spalte.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 1, 57, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (122, 118, 96, 1555059495, 'Dreispaltiges Layout', 'regular', 'layouts/dreispaltiges-layout', 0, 0, 'Dreispaltiges Layout', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel einer Seite mit einer linken und rechten Spalte.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 1, 58, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (124, 118, 32, 1555059457, 'Einspaltiges Layout', 'regular', 'layouts/einspaltiges-layout', 0, 0, 'Einspaltiges Layout - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel einer Seite mit nur einer Spalte.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 1, 55, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (127, 101, 576, 1553870717, 'Weitere Theme-Elemente', 'regular', 'theme-elemente', 0, 0, 'Theme-Elemente', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Themes für das Content-Management-System Contao finden Sie verschiedene Beispiele wie weitereTheme Elemente eingebunden werden können.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (128, 101, 544, 1553272043, 'Download-Elemente', 'regular', 'style-guide/download-elemente', 0, 0, 'Download-Elemente - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie verschiedene Beispiele wie Download-Elemente eingebunden werden können.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (129, 92, 384, 1553272043, 'Navigation', 'regular', 'module/navigation', 0, 0, 'Navigation - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie die verschiedenen Navigationstypen eingebunden werden können.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (130, 92, 512, 1553272043, 'User', 'regular', 'module/user', 0, 0, 'User - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie User-Module (z. B. Login- und Registrierung) eingebunden werden können.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (131, 92, 640, 1553272043, 'Newsletter', 'regular', 'module/newsletter', 0, 0, 'Newsletter - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie ein Newsletter eingebunden werden kann.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (132, 92, 768, 1553272043, 'FAQ', 'regular', 'module/faq', 0, 0, 'FAQ - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel, wie ein FAQ eingebunden werden kann.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (133, 92, 896, 1553272043, 'Formulare', 'regular', 'module/formulare', 0, 0, 'Formulare - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie Formulare eingebunden werden kann.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (134, 90, 704, 1553272043, 'Impressum', 'regular', 'impressum', 0, 0, 'Impressum - Mate Theme', '', 'noindex,nofollow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 1, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (135, 133, 128, 1574341960, 'Formular-Bestätigung', 'regular', 'module/anwendungen/formular-bestaetigung', 0, 0, 'Ihre Anfrage wurde abgesendet', '', 'noindex,nofollow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 1, 55, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 1, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (136, 131, 128, 1553272043, 'Newsletter-Details', 'regular', 'module/newsletter/newsletter-details', 0, 0, '', '', 'noindex,nofollow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 1, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (137, 132, 128, 1553272043, 'FAQ-Details', 'regular', 'module/faq/faq-details', 0, 0, 'FAQ-Details', '', 'noindex,nofollow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 1, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (138, 92, 1024, 1553272043, 'Suche', 'regular', 'module/suche', 0, 0, 'Suche - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie eine Suche eingebunden werden kann.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (139, 90, 800, 1555067757, 'Kontakt', 'regular', 'kontakt', 0, 0, 'Kontakt - Mate Theme', '', 'index,follow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel einer Kontakt-Seite mit Anschrift und Kontaktformular.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 1, 57, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 0, 'contact', 'map_default', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (140, 90, 1024, 1664480468, '404 Seite nicht gefunden', 'error_404', '404-seite-nicht-gefunden', 0, 0, '404 Seite nicht gefunden', '', 'index,follow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 0, '', '', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (141, 90, 1152, 1664480468, '403 Zugriff verweigert', 'error_401', '403-zugriff-verweigert', 0, 0, '403 Zugriff verweigert', '', 'index,follow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 0, '', '', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (144, 90, 848, 1553272043, 'Newsletter abonniert (Aktivierung)', 'regular', 'newsletter-aktivierung', 0, 0, '', '', 'noindex,nofollow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 1, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (145, 90, 872, 1553272043, 'Newsletter abbestellt (Deaktivierung)', 'regular', 'newsletter-kuendigung', 0, 0, '', '', 'noindex,nofollow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 1, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (148, 90, 836, 1553272043, 'Newsletter abonniert (Bestätigungsmail)', 'regular', 'newsletter-abonniert', 0, 0, '', '', 'noindex,nofollow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 1, 55, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 1, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (150, 156, 512, 1555059538, 'ohne Schräge', 'regular', 'layouts/headerbild-layouts/ohne-schräge', 0, 0, '', '', 'noindex,nofollow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (156, 118, 24, 1555062174, 'Headerbild Layouts', 'forward', 'layouts/headerbild-layouts', 0, 0, '', '', 'noindex,nofollow', NULL, 'permanent', 157, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 1, 56, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (157, 156, 256, 1555059314, 'Schräge nach links', 'regular', 'layouts/headerbild-layouts/schräge-nach-links', 0, 0, '', '', 'noindex,nofollow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (158, 156, 384, 1555059305, 'Schräge nach rechts', 'regular', 'layouts/headerbild-layouts/schräge-nach-rechts', 0, 0, '', '', 'noindex,nofollow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (159, 118, 64, 1555059520, 'Zweispaltiges Layout', 'forward', 'layouts/zweispaltiges-layout', 0, 0, '', '', 'noindex,nofollow', NULL, 'permanent', 120, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 1, 'a:1:{i:0;s:2:\"-1\";}', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 0, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (161, 118, 16, 1575631566, 'Layout mit geradem Header', 'regular', 'layouts/layout-mit-geradem-header', 0, 0, '', '', 'noindex,nofollow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 1, 59, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 0, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (162, 118, 256, 1555061298, 'Elemente mit Schrägen', 'regular', 'layouts/elemente-mit-schrägen', 0, 0, '', '', 'noindex,nofollow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 0, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `newsArchives`, `feedFormat`, `feedSource`, `maxFeedItems`, `feedFeatured`, `feedDescription`, `imgSize`, `ac_set`) VALUES (164, 92, 1152, 1560781890, 'Modale Dialoge', 'regular', 'module/modale-dialoge', 0, 0, '', '', 'index,follow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 0, '', 'map_default', 0, 0, 1, '', '', 0, 0, 0, 0, NULL, 'rss', 'source_teaser', 25, 'all_items', NULL, '', ''); + +INSERT INTO `tl_theme` (`id`, `tstamp`, `name`, `author`, `folders`, `screenshot`, `templates`, `pdir_th_description`, `pdir_th_license_domain`, `pdir_th_short_code`) VALUES (17, 1566205456, 'Odd Theme', 'pdir digital agentur // pdir GmbH / Juliane Langer, Philipp Seibt, Mathias Arzberger', NULL, NULL, '', '<b>pdir contao theme licence</b><br>\nMit dieser <b>Lizenz</b> gekennzeichnete Themes dürfen sowohl privat als auch kommerziell eingesetzt werden. Der Copyright-Link bzw. die Copyright-Links \"<i>ODD Theme by montequesto</i>\" dürfen nicht entfernt oder verändert werden. Das gilt auch wenn Sie das Theme\nnur als Basis für eine Website einsetzen und es verändern.\nMöchten Sie diesen Theme ohne Copyright-Link einsetzen, müssen Sie eine kostenpflichtige Lizenz erwerben.', '', 'odd'); diff --git a/contao/sql/contao50/minimal.sql b/contao/sql/contao50/minimal.sql new file mode 100644 index 0000000..9084a5b --- /dev/null +++ b/contao/sql/contao50/minimal.sql @@ -0,0 +1,536 @@ +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (117, 91, 384, 1560848068, 'Slider', 'slider', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:23:\"slider fullwidth skw-br\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (118, 120, 64, 1554459150, 'Header', 'article-header', 1, 'header', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-bl\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (119, 92, 128, 1511440816, 'Module', 'module', 1, 'main', 0, '', NULL, '', '', 0, NULL, '', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (131, 101, 64, 1511440816, 'Slider', 'slider-19', 1, 'header', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (132, 101, 128, 1511440816, 'Style Guide', 'style-guide', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (136, 107, 64, 1538489284, '02/01 Adressdaten', '02-01-adressdaten', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', 'ODD02/01'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (137, 107, 96, 1538489300, '02/02 Kontaktdaten', '02-02-kontaktdaten', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', 'ODD02/02'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (138, 107, 112, 1538489313, '02/03 Social Media Icons', '02-03-social-media-icons', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', 'ODD02/03'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (139, 107, 120, 1538489329, '02/04 Footer-Navigation', '02-04-footer-navigation', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', 'ODD02/04'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (140, 107, 124, 1538489341, '02/05 Copyright-Hinweis', '02-05-copyright-hinweis', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', 'ODD02/05'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (145, 106, 512, 1538489196, '01/01 Logo', '01-01-logo', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', 'ODD01/01'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (153, 113, 128, 1511440816, 'Textelemente', 'inhaltselemente-textelemente', 1, 'main', 0, '', NULL, '', '', 0, NULL, '', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (154, 114, 128, 1511440816, 'Akkordion', 'inhaltselemente-akkordion', 1, 'main', 0, '', NULL, '', '', 0, NULL, '', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (156, 116, 128, 1511440816, 'Media-Elemente', 'inhaltselemente-media-elemente', 1, 'main', 0, '', NULL, '', '', 0, NULL, '', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (159, 120, 128, 1511440816, 'Layout mit linker Spalte', 'layouts-layout-mit-linker-spalte', 1, 'main', 0, '', NULL, '', '', 0, NULL, '', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (160, 121, 128, 1511440816, 'Layout mit rechter Spalte', 'layouts-layout-mit-rechter-spalte', 1, 'main', 0, '', NULL, '', '', 0, NULL, '', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (161, 122, 128, 1511441564, 'Layout mit linker und rechter Spalte', 'layouts-layout-mit-linker-und-rechter-spalte', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (165, 124, 128, 1511442061, 'Einspaltiges Layout', 'layouts-einspaltiges-layout', 1, 'main', 0, '', NULL, '', '', 0, NULL, '', 1, '', '', '', ''); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (169, 127, 128, 1553878908, 'Weitere ODD Elemente', 'odd-elemente', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (170, 121, 64, 1555059636, 'Header', 'article-header-170', 1, 'header', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-bl\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (171, 128, 128, 1511528829, 'Download-Elemente', 'style-guide-download-elemente', 1, 'main', 0, '', NULL, '', '', 0, NULL, '', 1, '', '', '', ''); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (172, 129, 128, 1511529951, 'Navigation', 'module-navigation', 1, 'main', 0, '', NULL, '', '', 0, NULL, '', 1, '', '', '', ''); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (173, 130, 128, 1511529962, 'User', 'module-user', 1, 'main', 0, '', NULL, '', '', 0, NULL, '', 1, '', '', '', ''); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (176, 133, 128, 1511530050, 'Anwendungen', 'module-anwendungen', 1, 'main', 0, '', NULL, '', '', 0, NULL, '', 1, '', '', '', ''); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (177, 134, 128, 1511532246, 'Impressum', 'impressum', 1, 'main', 0, '', NULL, '', '', 0, NULL, '', 1, '', '', '', ''); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (178, 135, 128, 1511778176, 'Formular-Bestätigung', 'module-anwendungen-formular-bestaetigung', 1, 'main', 0, '', NULL, '', '', 0, NULL, '', 1, '', '', '', ''); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (181, 138, 128, 1511953599, 'Suche', 'module-suche', 1, 'main', 0, '', NULL, '', '', 0, NULL, '', 1, '', '', '', ''); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (182, 106, 640, 1538489223, '01/02 Top Navbar', '01-02-top-navbar', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', 'ODD01/02'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (184, 139, 128, 1555067798, 'Kontaktformular', 'kontakt', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (185, 140, 128, 1516628462, '404 Seite nicht gefunden', '404-seite-nicht-gefunden', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (186, 141, 128, 1516628325, '403 Zugriff verweigert', '403-zugriff-verweigert', 1, 'main', 0, '', NULL, '', '', 0, NULL, '', 1, '', '', '', ''); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (193, 122, 32, 1539349600, 'Header', 'article-header-193', 1, 'header', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-bl\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (194, 124, 64, 1539349619, 'Header', 'article-header-194', 1, 'header', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-bl\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (197, 91, 512, 1552643358, 'Intro', 'intro', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (198, 91, 640, 1637664098, 'News', 'news', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:24:\"primary-bg skw-tr skw-br\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (199, 91, 768, 1540212382, 'Teaserbox', 'teaserbox', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (209, 91, 896, 1540221815, 'Contentbox', 'contentbox', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (210, 91, 1024, 1552645291, 'Abschlusstext', 'abschlusstext', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (214, 91, 960, 1553870655, 'Preistabelle', 'preistabelle', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (215, 91, 832, 1553873058, 'Trenner', 'trenner', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (216, 91, 928, 1553873086, 'Trenner', 'trenner-216', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (220, 150, 64, 1554459178, 'Header', 'article-header-220', 1, 'header', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (228, 157, 256, 1555328537, 'Header', 'article-header-228', 1, 'header', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-bl\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (229, 157, 384, 1555060468, 'Schräge nach links', 'schräge-nach-links', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (230, 158, 256, 1555060311, 'Header', 'article-header-230', 1, 'header', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-br\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (231, 158, 384, 1555060458, 'Schräge nach rechts', 'schräge-nach-rechts', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (232, 150, 192, 1555060446, 'ohne Schräge', 'ohne-schräge', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (234, 161, 256, 1555060909, 'Header', 'article-header-234', 1, 'header', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-bl\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (235, 161, 384, 1575631587, 'Layout mit geradem Header', 'layout-mit-geradem-header', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (236, 122, 256, 1555061099, 'Rechte Spalte', 'rechte-spalte', 1, 'right', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (237, 162, 128, 1555061650, 'Text', 'text', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (238, 162, 64, 1555061378, 'Header', 'article-header-238', 1, 'header', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-br\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (239, 162, 256, 1555061489, 'Schräge / oben rechts / unten rechts', 'schräge-oben-rechts-unten-rechts', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:24:\"primary-bg skw-tr skw-br\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (240, 162, 384, 1555061664, 'Text', 'text-240', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (241, 162, 512, 1555061700, 'Schräge / oben links / unten links', 'schräge-oben-links-unten-links', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:24:\"primary-bg skw-tl skw-bl\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (242, 162, 640, 1555061890, 'Text', 'text-242', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (243, 162, 768, 1555061781, 'Schräge / oben links / unten rechts', 'schräge-oben-links-unten-rechts', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:24:\"primary-bg skw-tl skw-br\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (244, 162, 896, 1555061898, 'Text', 'text-244', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (245, 162, 1024, 1555061840, 'Schräge / oben rechts / unten links', 'schräge-oben-rechts-unten-links', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:24:\"primary-bg skw-tr skw-bl\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (246, 162, 1152, 1555061883, 'Text', 'text-246', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (247, 162, 1280, 1555062292, 'Schräge / oben rechts', 'schräge-oben-rechts', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:17:\"primary-bg skw-tr\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (248, 162, 1408, 1555063442, 'Text', 'text-248', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (251, 139, 256, 1555067790, 'Kontaktdaten', 'kontaktdaten', 1, 'right', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (252, 139, 64, 1555068566, 'Header', 'article-header-252', 1, 'header', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-br\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (253, 115, 256, 1560511469, 'Slider', 'slider-2', 1, 'main', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:23:\"slider fullwidth skw-br\";}', 1, '', '', '', '-'); +INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES (255, 164, 128, 1560781890, 'Modale Dialoge', 'module-modale-dialoge', 1, 'main', 0, '', NULL, '', '', 0, NULL, '', 1, '', '', '', ''); + +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (381, 'image', 131, 'tl_article', 272, 1488455906, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:52:\"einfaches Bild mit Überschrift und Bildunterschrift\";}', NULL, 0, 0, 0, 1, 0x512b86c6ff2011e6ba9f408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', 0, 'mit Klasse \"smaller\" würde das Bild nur 400px hoch sein', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_image_header', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (382, 'text', 153, 'tl_article', 384, 1511280898, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

h1-Überschrift

\n

h2-Überschrift

\n

h3-Überschrift

\n

h4-Überschrift

\n
h5-Überschrift
\n
h6-Überschrift
', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (400, 'headline', 153, 'tl_article', 576, 1539351368, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:89:\"Eine Überschrift mit der Klasse \"bordered-heading\" ist linksbündig und mit Unterstrich\";}', '

Eine Überschrift mit der Klasse \"bordered-heading\"
ist linksbündig und mit Unterstrich

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (401, 'headline', 153, 'tl_article', 612, 1539351363, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:104:\"Eine Überschrift mit den Klassen \"bordered-heading text-sm-right\" ist rechtsbündig und mit Unterstrich\";}', '

Eine Überschrift mit den Klassen \"bordered-heading right\" ist rechtsbündig und mit Unterstrich

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-sm-right', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (402, 'text', 153, 'tl_article', 672, 1539351599, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

[class .col-12 .col-md-6] Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (403, 'text', 153, 'tl_article', 720, 1539351609, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

[class .col-12 .col-md-6] Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (404, 'text', 153, 'tl_article', 756, 1511282466, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (407, 'image', 118, 'tl_article', 128, 1554458686, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:24:\"Layout mit linker Spalte\";}', NULL, 0, 0, 0, 0, 0xc942253a467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', '', 0, 'sdsds', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'content_element/image/header_image_odd', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (460, 'list', 153, 'tl_article', 768, 1511280660, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:17:\"nummerierte Liste\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, 'ordered', 0x613a343a7b693a303b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a313b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a323b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a333b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b7d, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (461, 'list', 153, 'tl_article', 896, 1511280653, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:19:\"unnummerierte Liste\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, 'unordered', 0x613a343a7b693a303b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a313b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a323b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a333b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b7d, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (462, 'headline', 132, 'tl_article', 384, 1511280957, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:11:\"Style Guide\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (463, 'headline', 153, 'tl_article', 192, 1553878794, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:12:\"Textelemente\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (467, 'hyperlink', 153, 'tl_article', 1024, 1511284040, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:4:\"Link\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '{{link_url::90}}', '', 1, '', 'Normaler Link', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (468, 'toplink', 153, 'tl_article', 1152, 1511284059, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 1, '', 'Top-Link', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (471, 'accordionStart', 154, 'tl_article', 128, 1552651351, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', 'Stadterkunden in Meißen auf eine ganz besondere Art', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (472, 'text', 154, 'tl_article', 256, 1552651360, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (473, 'accordionStop', 154, 'tl_article', 384, 1511284664, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (474, 'accordionStart', 154, 'tl_article', 512, 1552651391, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', 'Erinnerungen', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (475, 'text', 154, 'tl_article', 640, 1552651371, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (476, 'accordionStop', 154, 'tl_article', 768, 1511284674, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (477, 'accordionStart', 154, 'tl_article', 896, 1552651399, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', 'Botschaften aus der Vergangenheit', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (478, 'text', 154, 'tl_article', 1024, 1552651380, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (479, 'accordionStop', 154, 'tl_article', 1152, 1511284683, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (480, 'headline', 154, 'tl_article', 64, 1553878812, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:9:\"Akkordion\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (504, 'headline', 156, 'tl_article', 128, 1553878872, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:14:\"Media-Elemente\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (506, 'gallery', 156, 'tl_article', 512, 1554464836, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Dreispaltig\";}', NULL, 0, 0, 0, 0, NULL, '', '', 'a:3:{i:0;s:3:\"510\";i:1;s:3:\"300\";i:2;s:4:\"crop\";}', '', 1, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, 0x613a363a7b693a303b733a31363a22c09740c7467611e9a91c408d5c22fa41223b693a313b733a31363a22c433b88f467611e9a91c408d5c22fa41223b693a323b733a31363a22b92fb24e467611e9a91c408d5c22fa41223b693a333b733a31363a22c942253a467611e9a91c408d5c22fa41223b693a343b733a31363a22d285349b467611e9a91c408d5c22fa41223b693a353b733a31363a22c416cb81467611e9a91c408d5c22fa41223b7d, 0, 3, 0, 0, 'custom', 0, 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (507, 'youtube', 156, 'tl_article', 1792, 1555056806, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, 'mfo0iHDrBN8', '', NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (509, 'headline', 156, 'tl_article', 256, 1539353264, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:24:\"Galerie (Contao)\";}', '

Die Anordnung der Bilder passt sich je nachdem wie viele Spalten ausgewählt sind automatisch an.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (556, 'headline', 169, 'tl_article', 128, 1553878919, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:20:\"Weitere ODD-Elemente\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (564, 'headline', 169, 'tl_article', 256, 1516980271, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:11:\"Content Box\";}', '

Die Content Box lässt sich über das Inhaltselement mateContentBox an jeder beliebigen Stelle platzieren. Es kann eine Überschrift, ein Text sowie ein Link/Linktext angegeben werden. Breite und Farben der Boxen werden durch das Vergeben von CSS-Klassen bzw. über die CSS-Datei angepasst.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (565, 'headline', 169, 'tl_article', 640, 1516980281, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:9:\"Teaserbox\";}', '

Die Teaserbox lässt sich über das Inhaltselement mateTeaserBox an jeder beliebigen Stelle platzieren. Es kann ein Bild, eine Überschrift, ein Text sowie ein Link/Linktext angegeben werden. Die Breite der Boxen kann durch das Vergeben von CSS-Klassen angepasst werden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (567, 'image', 170, 'tl_article', 128, 1552650880, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:25:\"Layout mit rechter Spalte\";}', NULL, 0, 0, 0, 0, 0xc09740c7467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'content_element/image/header_image_odd', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (571, 'table', 153, 'tl_article', 1408, 1539352121, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:30:\"Tabelle mit Elementtyp Tabelle\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', '', NULL, '', NULL, 'a:5:{i:0;a:3:{i:0;s:6:\"Head 1\";i:1;s:6:\"Head 2\";i:2;s:6:\"Head 3\";}i:1;a:3:{i:0;s:8:\"Column 1\";i:1;s:8:\"Column 2\";i:2;s:8:\"Column 3\";}i:2;a:3:{i:0;s:8:\"Column 1\";i:1;s:8:\"Column 2\";i:2;s:8:\"Column 3\";}i:3;a:3:{i:0;s:8:\"Column 1\";i:1;s:8:\"Column 2\";i:2;s:8:\"Column 3\";}i:4;a:3:{i:0;s:8:\"Column 1\";i:1;s:8:\"Column 2\";i:2;s:8:\"Column 3\";}}', '', 1, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (572, 'code', 153, 'tl_article', 1536, 1511528123, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:4:\"Code\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', 'JavaScript', 'sourceText', '', '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (573, 'markdown', 153, 'tl_article', 1664, 1511528199, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', '## Markdown\n\nSince Contao 3.3.x Contao ships with the markdown content element. \n\n##### What is Markdown?\n\n> Markdown is a markup language with plain text formatting syntax designed so that it can be converted to HTML and many other formats using a tool by the same name.', '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:8:\"markdown\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (574, 'headline', 171, 'tl_article', 128, 1553878882, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:17:\"Download-Elemente\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (575, 'download', 171, 'tl_article', 256, 1552651865, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, 0, 0, 0, 0, 0xb0ad636c467611e9a91c408d5c22fa41, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 1, '', 'Einzelnes Download-Element', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (576, 'downloads', 171, 'tl_article', 384, 1552651907, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:9:\"Downloads\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, 0x613a363a7b693a303b733a31363a22bd8cb98b467611e9a91c408d5c22fa41223b693a313b733a31363a22d285349b467611e9a91c408d5c22fa41223b693a323b733a31363a22c416cb81467611e9a91c408d5c22fa41223b693a333b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b7d, 0, 4, 0, 0, 'custom', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (580, 'headline', 172, 'tl_article', 128, 1553877182, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:10:\"Navigation\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (589, 'headline', 173, 'tl_article', 128, 1553877192, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:4:\"User\";}', '

Test-Zugangsdaten:

\n

User: mate-user
Passwort: mate theme

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (590, 'module', 173, 'tl_article', 256, 1539335021, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 403, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (592, 'module', 173, 'tl_article', 384, 1539335052, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 407, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (595, 'module', 173, 'tl_article', 304, 1539335029, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 404, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (596, 'module', 173, 'tl_article', 312, 1539335038, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 405, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (597, 'module', 173, 'tl_article', 316, 1539335046, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 406, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (599, 'text', 173, 'tl_article', 192, 1516703706, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:17:\"Test-Zugangsdaten\";}', '

Username: j.smith
Password: johnsmith

\n

Username: d.evans
Password: donnaevans

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (600, 'text', 177, 'tl_article', 128, 1525853618, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:9:\"Impressum\";}', '

Verantwortlicher Diensteanbieter im Sinne von § 5 Telemediengesetz (TMG),

\n

Inhaber der Domain www.example-domain.de

\n

Firma
Musterstraße 12
00000 Musterhausen

\n

Telefon: +49 (0)1234 / 5678910
E-Mail: info@example.de

\n

 

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (601, 'headline', 176, 'tl_article', 128, 1553877228, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:11:\"Anwendungen\";}', '

Für das, wie in den folgenden Formularen, dargestellte Upload-Feld, muss das Template form_mate_upload im Formulargenerator bei dem jeweiligen Element ausgewählt werden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (602, 'form', 176, 'tl_article', 256, 1539346665, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:30:\"Formular (tabellenlos)\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 6, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (604, 'text', 178, 'tl_article', 128, 1511778265, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:30:\"Ihre Anfrage wurde übertragen\";}', '

Ihre Anfrage wurde erfolgreich versendet und wir werden uns in Kürze mit Ihnen in Verbindung setzen.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (616, 'module', 181, 'tl_article', 128, 1539347874, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 415, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (617, 'headline', 181, 'tl_article', 64, 1553877236, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:5:\"Suche\";}', '

Im Suchmaschinen-Modul muss das Template search_mate ausgewählt werden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (639, 'text', 172, 'tl_article', 224, 1539334631, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:22:\"Unterseiten-Navigation\";}', '

Navigations-Modul mit der Klasse subnav

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (654, 'ct_wrapperStart', 153, 'tl_article', 648, 1540221151, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 0, '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (655, 'ct_wrapperStop', 153, 'tl_article', 726, 1540221157, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, '', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 0, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (662, 'text', 186, 'tl_article', 128, 1516628515, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:24:\"403 - Zugriff verweigert\";}', '

Auf die von Ihnen angeforderte Seite haben Sie leider keinen Zugriff.

\n

Sie könnten stattdessen zur Startseite navigieren oder uns kontaktieren.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (663, 'text', 185, 'tl_article', 128, 1516628505, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:26:\"404 - Seite nicht gefunden\";}', '

Die von Ihnen angeforderte Seite wurde leider nicht gefunden. Vielleicht haben Sie sich vertippt oder die Seite existiert nicht mehr.

\n

Sie könnten stattdessen zur Startseite navigieren oder uns kontaktieren.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (664, 'headline', 156, 'tl_article', 1664, 1516980207, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"YouTube\";}', '

Damit sich das Video auch auf verschiedenen Endgeräten responsiv verhält, muss bei dem Elementtyp YouTube das Template ce_youtube_mate ausgewählt werden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (721, 'headline', 159, 'tl_article', 128, 1552650587, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe. 929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (726, 'text', 159, 'tl_article', 256, 1552650787, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', 0, 0, 0, 0, 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 1, '', 'right', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (743, 'ct_wrapperStart', 159, 'tl_article', 384, 1540220710, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 0, '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (744, 'ct_wrapperStop', 159, 'tl_article', 1024, 1540220716, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, '', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 0, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (745, 'text', 159, 'tl_article', 512, 1552650706, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (746, 'text', 159, 'tl_article', 640, 1552650714, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (747, 'text', 159, 'tl_article', 768, 1552650650, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (748, 'text', 159, 'tl_article', 896, 1552650692, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (749, 'headline', 159, 'tl_article', 320, 1552650561, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (783, 'image', 193, 'tl_article', 128, 1555060980, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:20:\"Dreispaltiges Layout\";}', NULL, 0, 0, 0, 0, 0xae24b6cc467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'content_element/image/header_image_odd', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (784, 'image', 194, 'tl_article', 128, 1553878074, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:19:\"Einspaltiges Layout\";}', NULL, 0, 0, 0, 0, 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'content_element/image/header_image_odd', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (792, 'form', 184, 'tl_article', 124, 1555068392, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 8, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (797, 'text', 251, 'tl_article', 128, 1555069654, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:12:\"Kontaktdaten\";}', '

Mustermann GmbH
Musterstraße 12
00000 Musterhausen

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (803, 'headline', 184, 'tl_article', 64, 1555068611, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:30:\"Bleiben Sie mit uns in Kontakt\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (807, 'hyperlink', 153, 'tl_article', 1280, 1517820154, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '#', '', 1, '', 'Button', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"btn\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (810, 'image', 145, 'tl_article', 128, 1644834392, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, 0, 0, 0, 1, 0xc96d0cf7472811e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"25\";}', '{{link_url::90|urlattr}}', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (812, 'ct_featureElement', 182, 'tl_article', 256, 1553852915, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

info@example.org

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:5:\"email\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', NULL, 'far fa-envelope', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (813, 'ct_wrapperStart', 182, 'tl_article', 384, 1540216548, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:12:\"social-media\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (814, 'ct_wrapperStop', 182, 'tl_article', 512, 1540216554, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (815, 'ct_featureElement', 182, 'tl_article', 448, 1540306869, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Facebook

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', 'https://www.facebook.com/', 'fab fa-facebook-f', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (816, 'ct_featureElement', 182, 'tl_article', 480, 1540306883, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Twitter

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', 'https://twitter.com/', 'fab fa-twitter', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (817, 'ct_featureElement', 182, 'tl_article', 496, 1540306897, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Instagram

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', 'https://www.instagram.com/', 'fab fa-instagram', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (818, 'ct_featureElement', 182, 'tl_article', 504, 1540306925, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Pinterest

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', 'https://www.pinterest.de/', 'fab fa-pinterest-p', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (819, 'ct_featureElement', 182, 'tl_article', 508, 1540306943, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Linked In

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', 'https://de.linkedin.com/', 'fab fa-linkedin-in', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (820, 'text', 136, 'tl_article', 128, 1538490759, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Adressdaten\";}', '

Musterfirma GmbH
Musterstraße 127
01234 Musterstadt

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (821, 'ct_featureElement', 137, 'tl_article', 128, 1553270517, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

+ 49 (0) 0123 4567890

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-phone', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (822, 'ct_featureElement', 137, 'tl_article', 256, 1540216645, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

+ 49 (0) 0123 456789

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-mobile', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (823, 'ct_featureElement', 137, 'tl_article', 384, 1540216655, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

+ 49 (0) 0123 4567891

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-fax', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (824, 'ct_featureElement', 137, 'tl_article', 512, 1540563691, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

info@example.org

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'far fa-envelope', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (825, 'headline', 137, 'tl_article', 64, 1538491017, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:12:\"Kontaktdaten\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (826, 'ct_featureElement', 138, 'tl_article', 128, 1540307110, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Facebook

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-facebook-f', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (827, 'ct_featureElement', 138, 'tl_article', 256, 1540307120, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Twitter

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-twitter', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (828, 'ct_featureElement', 138, 'tl_article', 384, 1540307160, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Instagram

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-instagram', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (829, 'ct_featureElement', 138, 'tl_article', 512, 1540307177, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Pinterest

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-pinterest-p', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (830, 'ct_featureElement', 138, 'tl_article', 640, 1540307187, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Linked In

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-linkedin-in', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (831, 'headline', 138, 'tl_article', 64, 1538491124, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:12:\"Social Media\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (832, 'headline', 139, 'tl_article', 128, 1538491199, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:9:\"Odd Theme\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (833, 'module', 139, 'tl_article', 256, 1538491192, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 373, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (834, 'text', 140, 'tl_article', 128, 1560846799, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

© Firma / {{date::Y}} / Odd Theme by montequesto

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (838, 'sliderStart', 117, 'tl_article', 128, 1553851804, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 1, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (839, 'sliderStop', 117, 'tl_article', 256, 1539088811, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (840, 'sliderElement', 117, 'tl_article', 192, 1552657173, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Dank der Saalkapazitäten fanden in dem traditionsreichen Haus zahlreiche Großveranstaltungen statt. Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', 1, 0, 0, 0, 0xc942253a467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Kultur & Freizeit', 'Mehr dazu', '{{event_url::26}}', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (841, 'sliderElement', 117, 'tl_article', 224, 1552657262, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Keramikfabrik\";}', '

Bei der Produktion von Kachelöfen, Wandplatten, Porzellanen und Schamotte war Meißen um 1900 führend in Deutschland. Die für Kachelöfen entwickelte Meißner Patentkachel war wohl in den meisten deutschen Wohnzimmern zu finden.

', 1, 0, 0, 0, 0xae24b6cc467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Industrie', 'Mehr dazu', '{{link_url::120}}', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (842, 'sliderElement', 117, 'tl_article', 208, 1552657181, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', 1, 0, 0, 0, 0xc416cb81467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Sport', 'Mehr erfahren', '{{event_url::27}}', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (843, 'sliderElement', 117, 'tl_article', 248, 1552657268, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:29:\"E-Werk in der Brauhausstraße\";}', '

Das ehemalige Elektrizitätswerk an der Brauhausstraße ging 1911 in Betrieb und lieferte Strom für die Meißner Innenstadt. Nach 1990 wurde das E-Werk stillgelegt und 2004 wurde das Kesselhaus im hinteren Grundstücksbereich abgerissen.

', 1, 0, 0, 0, 0xb92fb24e467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Industrie', 'Weiterlesen', '{{link_url::121}}', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (844, 'sliderElement', 117, 'tl_article', 216, 1552657188, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:21:\"Kaserne in Bohnitzsch\";}', '

Das Kasernengelände in Meißen-Bohnitzsch wurde 1936 angelegt und wurde ab Mai 1945 von der Sowjetunion genutzt. Unter anderem war das 7. Garde-Panzerregiment der GSSD hier untergebracht.

', 1, 0, 0, 0, 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Militär', 'Mehr dazu', '{{news_url::12}}', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (845, 'headline', 197, 'tl_article', 128, 1552643659, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:28:\"bordered-heading text-center\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (846, 'ct_wrapperStart', 197, 'tl_article', 256, 1540220465, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 0, '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (847, 'ct_wrapperStop', 197, 'tl_article', 384, 1540220471, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (848, 'text', 197, 'tl_article', 320, 1552644010, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (849, 'text', 197, 'tl_article', 352, 1552643989, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (850, 'text', 198, 'tl_article', 128, 1645107145, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Diese Räumlichkeiten sind Zeitdokumente. Ihre Ablichtung vielleicht die letzte vor dem endgültigen Abriss oder vor einer Sanierung, die alle Spuren der Vergangenheit verwischen werden. Sie wurden sorgfältig dokumentiert, ohne am Ort etwas zu verändern. Da die Fotografien grundsätzlich im - oft sehr spärlichen - natürlichen Licht vor Ort aufgenommen wurden, kam meist die HDR-Technik zum Einsatz, die

\n

Abbildungen mit hocher Farbintensität und fast malerischem Flair hervorbringt. Die Bilder entstanden im Einverständnis der jeweiligen Grundstückseigentümer.
Der Autor dankt allen, die ihm den Besuch dieser verlassenen Orte ermöglichten und der Veröffentlichung der dort entstandenen Aufnahmen zustimmten.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 391, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (851, 'ct_wrapperStart', 199, 'tl_article', 128, 1540215730, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Platzhalter für Teaserboxen

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 0, '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (853, 'ct_wrapperStop', 199, 'tl_article', 256, 1540215704, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (855, 'ct_teaserBox', 199, 'tl_article', 224, 1554457312, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:22:\"Ziegelei am Roten Haus\";}', '

Die Spezialität der Ziegelei war zu DDR-Zeiten die Herstellung von Hochlochziegeln - leichten, großformatigen Ziegeln für den Wohnungsbau.

', 1, 0, 0, 0, 0xc433b88f467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, 'Mehr dazu', '{{news_url::23}}', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-4', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (856, 'ct_teaserBox', 199, 'tl_article', 240, 1554457318, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', 1, 0, 0, 0, 0xb0ad636c467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, 'Mehr dazu', '{{event_url::28}}', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-4', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (859, 'headline', 198, 'tl_article', 64, 1664362558, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:9:\"Aktuelles\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-center', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (863, 'module', 172, 'tl_article', 352, 1539334592, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 384, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (876, 'headline', 153, 'tl_article', 630, 1553879193, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:101:\"Eine Überschrift mit den Klassen \"bordered-heading text-sm-center\" ist zentriert und mit Unterstrich\";}', '

Eine Überschrift mit den Klassen \"bordered-heading right\" ist rechtsbündig und mit Unterstrich

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-sm-center', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (877, 'text', 153, 'tl_article', 1472, 1539352288, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:27:\"Tabelle mit Elementtyp Text\";}', '\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Column 1Column 2Column 3
Column 1Column 2Column 3
Column 1Column 2Column 3
Verbundene Zeilen
', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (885, 'ct_contentBox', 209, 'tl_article', 256, 1554457368, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Dank der Saalkapazitäten fanden in dem traditionsreichen Haus zahlreiche Großveranstaltungen statt. Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-3\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr dazu', '{{event_url::26}}', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (886, 'ct_wrapperStart', 209, 'tl_article', 128, 1540222509, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Platzhalter für Teaserboxen

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"row no-margin\";}', 0, '', '', NULL, '', '', '', '', 'Inhaltscontainer mit der Klasse \'row\'', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (887, 'ct_wrapperStop', 209, 'tl_article', 640, 1540215843, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (889, 'ct_teaserBox', 199, 'tl_article', 160, 1554457306, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:19:\"Das Landkrankenhaus\";}', '

Das ehemalige Landkrankenhaus ist seit dem Neubau der Elblandklinik in Meißen-Bohnitzsch ungenutzt.

', 1, 0, 0, 0, 0xce7c80c2467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, 'Mehr dazu', '{{news_url::24}}', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (890, 'ct_contentBox', 209, 'tl_article', 384, 1552652907, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Keramikfabrik\";}', '

Bei der Produktion von Kachelöfen, Wandplatten, Porzellanen und Schamotte war Meißen um 1900 führend in Deutschland. Die für Kachelöfen entwickelte Meißner Patentkachel war wohl in den meisten deutschen Wohnzimmern zu finden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-3\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr dazu', '{{link_url::120}}', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (892, 'ct_featureElement', 182, 'tl_article', 64, 1553852907, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

+ 49 (0) 123 45678

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:5:\"phone\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', NULL, 'fas fa-phone', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (893, 'headline', 169, 'tl_article', 768, 1553879082, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:22:\"Preis-Tabelle 3 stufig\";}', '

Beispiel 1:

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (894, 'ct_priceBox', 169, 'tl_article', 896, 1540307443, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"Paket A\";}', '

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', 'Mehr Infos', '{{link_url::90}}', 'Jetzt bestellen', '{{link_url::90}}', 'pro Monat, zzgl. MwSt.', '99,99 €', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (895, 'ct_wrapperStart', 169, 'tl_article', 832, 1540301947, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"row no-margin\";}', 0, '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (896, 'ct_wrapperStop', 169, 'tl_article', 1024, 1540217731, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (897, 'ct_priceBox', 169, 'tl_article', 960, 1540307450, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"Paket B\";}', '

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', 'Am beliebtesten', 'Mehr Infos', '90', 'Jetzt bestellen', '90', 'pro Monat, zzgl. MwSt.', '249,99 €', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (898, 'ct_priceBox', 169, 'tl_article', 992, 1540219169, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"Paket C\";}', '

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', 'Mehr Infos', '90', 'Jetzt bestellen', '90', 'pro Monat, zzgl. MwSt.', '49,99 €', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (899, 'headline', 169, 'tl_article', 1152, 1540219594, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:19:\"Einfache Inhaltsbox\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (900, 'text', 169, 'tl_article', 1280, 1552652309, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:24:\"Stadterkunden in Meißen\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (901, 'ct_wrapperStart', 169, 'tl_article', 1216, 1540219647, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 0, '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (902, 'ct_wrapperStop', 169, 'tl_article', 1408, 1540219653, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (903, 'text', 169, 'tl_article', 1344, 1552652333, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:12:\"Erinnerungen\";}', '

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (904, 'ct_wrapperStart', 169, 'tl_article', 704, 1540219734, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Platzhalter für Teaserboxen

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 0, '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (905, 'ct_teaserBox', 169, 'tl_article', 736, 1552652219, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:19:\"Wohnhaus Rosengasse\";}', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', 1, 0, 0, 0, 0xb81fbc97467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, 'Mehr dazu', '90', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (906, 'ct_teaserBox', 169, 'tl_article', 752, 1552652238, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Keramikfabrik\";}', '

Bei der Produktion von Kachelöfen, Wandplatten, Porzellanen und Schamotte war Meißen um 1900 führend in Deutschland. Die für Kachelöfen entwickelte Meißner Patentkachel war wohl in den meisten deutschen Wohnzimmern zu finden.

', 1, 0, 0, 0, 0xae24b6cc467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, 'Mehr dazu', '90', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-4', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (907, 'ct_teaserBox', 169, 'tl_article', 760, 1552652257, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', 1, 0, 0, 0, 0xc416cb81467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, 'Mehr dazu', '90', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-4', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (908, 'ct_wrapperStop', 169, 'tl_article', 764, 1540219734, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (909, 'ct_wrapperStart', 169, 'tl_article', 448, 1540219772, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie)', '

Platzhalter für Teaserboxen

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 0, '', '', NULL, '', '', '', '', 'Inhaltscontainer mit der Klasse \'row\'', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (910, 'ct_contentBox', 169, 'tl_article', 544, 1552652156, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-4\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr dazu', '90', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (911, 'ct_contentBox', 169, 'tl_article', 592, 1552652166, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Keramikfabrik\";}', '

Bei der Produktion von Kachelöfen, Wandplatten, Porzellanen und Schamotte war Meißen um 1900 führend in Deutschland. Die für Kachelöfen entwickelte Meißner Patentkachel war wohl in den meisten deutschen Wohnzimmern zu finden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-4\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr dazu', '90', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (912, 'ct_contentBox', 169, 'tl_article', 616, 1552652180, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:19:\"Wohnhaus Rosengasse\";}', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-4\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr dazu', '90', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (913, 'ct_wrapperStop', 169, 'tl_article', 628, 1540219772, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (914, 'ct_contentBox', 209, 'tl_article', 512, 1554457380, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:19:\"Wohnhaus Rosengasse\";}', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-3\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr erfahren', '{{news_url::11}}', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (915, 'ct_contentBox', 209, 'tl_article', 352, 1552652897, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-3\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr dazu', '{{event_url::27}}', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (917, 'headline', 169, 'tl_article', 1088, 1553879106, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:21:\"Preistabelle 2 stufig\";}', '

Beispiel 1:

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (918, 'ct_wrapperStart', 169, 'tl_article', 1120, 1540301976, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"row no-margin\";}', 0, '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (919, 'ct_priceBox', 169, 'tl_article', 1136, 1540302061, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"Paket A\";}', '

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-6\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', 'Mehr Infos', '90', 'Jetzt bestellen', '90', 'pro Monat, zzgl. MwSt.', '99,99 €', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (920, 'ct_priceBox', 169, 'tl_article', 1144, 1540302044, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"Paket B\";}', '

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-6\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', 'Mehr Infos', '90', 'Jetzt bestellen', '90', 'pro Monat, zzgl. MwSt.', '249,99 €', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (922, 'ct_wrapperStop', 169, 'tl_article', 1150, 1540301976, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (927, 'ct_wrapperStart', 210, 'tl_article', 256, 1540306574, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 0, '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (928, 'text', 210, 'tl_article', 320, 1553869218, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Diese Räumlichkeiten sind Zeitdokumente. Ihre Ablichtung vielleicht die letzte vor dem endgültigen Abriss oder vor einer Sanierung, die alle Spuren der Vergangenheit verwischen werden. Sie wurden sorgfältig dokumentiert, ohne am Ort etwas zu verändern. Da die Fotografien grundsätzlich im - oft sehr spärlichen - natürlichen Licht vor Ort aufgenommen wurden, kam meist die HDR-Technik zum Einsatz, die

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (929, 'text', 210, 'tl_article', 352, 1553869224, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Abbildungen mit hocher Farbintensität und fast malerischem Flair hervorbringt. Die Bilder entstanden im Einverständnis der jeweiligen Grundstückseigentümer.
Der Autor dankt allen, die ihm den Besuch dieser verlassenen Orte ermöglichten und der Veröffentlichung der dort entstandenen Aufnahmen zustimmten.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (930, 'ct_wrapperStop', 210, 'tl_article', 384, 1540306574, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (931, 'sliderElement', 117, 'tl_article', 252, 1552657274, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"VEB Ziegelwerk Rotes Haus\";}', '

Die Ziegelei am Roten Haus war die letzte ihrer Art in Meißen, sie war nach fast 140 Jahren Produktion 1993 geschlossen worden.

', 1, 0, 0, 0, 0xc09740c7467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Industrie', 'Weiterlesen', '{{news_url::23}}', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (933, 'text', 210, 'tl_article', 512, 1553875181, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:5:\"quote\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (934, 'headline', 160, 'tl_article', 128, 1552650990, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe. 929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (935, 'text', 160, 'tl_article', 256, 1552650983, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', 0, 0, 0, 0, 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 1, '', 'right', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (936, 'headline', 160, 'tl_article', 384, 1552650995, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (937, 'ct_wrapperStart', 160, 'tl_article', 512, 1552650983, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 0, '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (938, 'text', 160, 'tl_article', 640, 1552651001, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (939, 'text', 160, 'tl_article', 768, 1552651007, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (940, 'text', 160, 'tl_article', 896, 1552651013, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (941, 'text', 160, 'tl_article', 1024, 1552651018, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (942, 'ct_wrapperStop', 160, 'tl_article', 1152, 1552650983, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, '', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 0, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (945, 'headline', 161, 'tl_article', 128, 1552651039, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe. 929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (946, 'text', 161, 'tl_article', 256, 1552651034, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', 0, 0, 0, 0, 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 1, '', 'right', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (947, 'headline', 161, 'tl_article', 384, 1552651047, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (948, 'ct_wrapperStart', 161, 'tl_article', 512, 1552651034, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 0, '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (949, 'text', 161, 'tl_article', 640, 1552651092, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (950, 'text', 161, 'tl_article', 768, 1552651098, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (951, 'text', 161, 'tl_article', 896, 1552651105, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (952, 'text', 161, 'tl_article', 1024, 1552651111, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (953, 'ct_wrapperStop', 161, 'tl_article', 1152, 1552651034, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, '', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 0, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (954, 'headline', 161, 'tl_article', 1280, 1552651122, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Letzte Blogeinträge\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (955, 'module', 161, 'tl_article', 1408, 1552651034, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 391, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (956, 'headline', 165, 'tl_article', 128, 1552651144, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe. 929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (957, 'text', 165, 'tl_article', 256, 1552651140, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', 0, 0, 0, 0, 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 1, '', 'right', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (958, 'headline', 165, 'tl_article', 384, 1552651150, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (959, 'ct_wrapperStart', 165, 'tl_article', 512, 1552651140, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 0, '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (960, 'text', 165, 'tl_article', 640, 1552651155, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (961, 'text', 165, 'tl_article', 768, 1552651161, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (962, 'text', 165, 'tl_article', 896, 1552651166, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (963, 'text', 165, 'tl_article', 1024, 1552651172, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (964, 'ct_wrapperStop', 165, 'tl_article', 1152, 1552651140, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, '', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 0, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (978, 'gallery', 156, 'tl_article', 640, 1554464808, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Vierspaltig\";}', NULL, 0, 0, 0, 0, NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', '', 1, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, 0x613a343a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b7d, 0, 4, 0, 0, 'custom', 0, 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (986, 'ct_featureElement', 169, 'tl_article', 1536, 1552653271, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-home', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (987, 'ct_featureElement', 169, 'tl_article', 1664, 1552653413, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-check', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (988, 'headline', 169, 'tl_article', 1472, 1552653438, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:14:\"Text mit Icons\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (989, 'headline', 199, 'tl_article', 64, 1553867230, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:14:\"Die Highlights\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:28:\"bordered-heading text-center\";}', 0, '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (990, 'headline', 210, 'tl_article', 128, 1553877648, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:28:\"bordered-heading text-center\";}', 0, '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (991, 'text', 210, 'tl_article', 640, 1553868952, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Alle Fotos © Claus-Dirk Langer, Dresden/Meißen

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (998, 'ct_wrapperStart', 214, 'tl_article', 64, 1553870516, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"row no-margin\";}', 0, '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (999, 'ct_priceBox', 214, 'tl_article', 116, 1553873824, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Urban Exploring Foto-Reise\";}', '

Hin und Rückfahrt

\n

5 tägige Abenteuerreise

\n

Übernachtung und volle Verpflegung

\n

Urbexplorer/örtlicher Guide

\n

Urbexplorer Expeditionsfahrzeug

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', 'Am beliebtesten', 'Mehr Infos', '{{link_url::93}}', 'Jetzt bestellen', '{{link_url::139}}', 'max. 7 Personen', '550 €', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1000, 'ct_priceBox', 214, 'tl_article', 112, 1553873803, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Urban Exploring Foto-Tour\";}', '

bis zu 10 Stunden fotografieren

\n

3 atemberaubende Industrieobjekte

\n

Übernachtung mit Frühstück

\n

Mitfahrgelegenheit

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', 'Mehr Infos', '{{link_url::93}}', 'Jetzt bestellen', '{{link_url::139}}', 'pro Person, inkl. MwSt.', '180 €', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1001, 'ct_priceBox', 214, 'tl_article', 120, 1553873842, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:30:\"Urban Exploring Foto-Abenteuer\";}', '

9 Tage Fotoabenteuer

\n

inclusive Flug von Deutschland

\n

Übernachtung in Guesthouses

\n

deutschsprachiger Guide von Urbexplorer

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', 'Mehr Infos', '{{link_url::93}}', 'Jetzt bestellen', '{{link_url::139}}', 'Gruppenrabatt möglich', '1.490 €', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1002, 'ct_wrapperStop', 214, 'tl_article', 124, 1553870516, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1003, 'html', 215, 'tl_article', 128, 1553873070, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', '
', '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', '
', '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:8:\"bordered\";}', 0, '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1006, 'html', 216, 'tl_article', 128, 1553873079, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', '
', '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', '
', '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:8:\"bordered\";}', 0, '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1007, 'gallery', 156, 'tl_article', 384, 1554464827, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Zweispaltig\";}', NULL, 0, 0, 0, 0, NULL, '', '', 'a:3:{i:0;s:3:\"510\";i:1;s:3:\"200\";i:2;s:4:\"crop\";}', '', 1, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, 0x613a323a7b693a303b733a31363a22b92fb24e467611e9a91c408d5c22fa41223b693a313b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b7d, 0, 2, 0, 0, 'custom', 0, 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1020, 'image', 220, 'tl_article', 128, 1554459204, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:24:\"Headerbild ohne Schräge\";}', NULL, 0, 0, 0, 0, 0xc942253a467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"16\";}', '', 0, 'sdsds', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'content_element/image/header_image_odd', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1022, 'gallery', 156, 'tl_article', 768, 1554464897, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:12:\"Fünfspaltig\";}', NULL, 0, 0, 0, 0, NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', '', 1, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, 0x613a353a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b7d, 0, 5, 0, 0, 'custom', 0, 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1023, 'gallery', 156, 'tl_article', 896, 1554464908, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Sechspaltig\";}', NULL, 0, 0, 0, 0, NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', '', 1, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, 0x613a363a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b7d, 0, 6, 0, 0, 'custom', 0, 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1024, 'gallery', 156, 'tl_article', 1024, 1554464918, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:13:\"Siebenspaltig\";}', NULL, 0, 0, 0, 0, NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', '', 1, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, 0x613a373a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b7d, 0, 7, 0, 0, 'custom', 0, 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1025, 'gallery', 156, 'tl_article', 1152, 1554464925, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Achtspaltig\";}', NULL, 0, 0, 0, 0, NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', '', 1, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, 0x613a383a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b7d, 0, 8, 0, 0, 'custom', 0, 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1026, 'gallery', 156, 'tl_article', 1280, 1554464985, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Neunspaltig\";}', NULL, 0, 0, 0, 0, NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', '', 1, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, 0x613a393a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a383b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b7d, 0, 9, 0, 0, 'custom', 0, 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1027, 'gallery', 156, 'tl_article', 1408, 1554464993, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Zehnspaltig\";}', NULL, 0, 0, 0, 0, NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', '', 1, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, 0x613a31303a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a383b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b693a393b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b7d, 0, 10, 0, 0, 'custom', 0, 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1028, 'gallery', 156, 'tl_article', 1472, 1554465027, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:10:\"Elfspaltig\";}', NULL, 0, 0, 0, 0, NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', '', 1, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, 0x613a31313a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a383b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b693a393b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b693a31303b733a31363a22c09740c7467611e9a91c408d5c22fa41223b7d, 0, 11, 0, 0, 'custom', 0, 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1029, 'gallery', 156, 'tl_article', 1504, 1554465044, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:13:\"Zwölfspaltig\";}', NULL, 0, 0, 0, 0, NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', '', 1, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, 0x613a31323a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a383b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b693a393b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b693a31303b733a31363a22c09740c7467611e9a91c408d5c22fa41223b693a31313b733a31363a22c433b88f467611e9a91c408d5c22fa41223b7d, 0, 12, 0, 0, 'custom', 0, 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1033, 'image', 228, 'tl_article', 128, 1555060408, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:34:\"Headerbild mit Schräge nach links\";}', NULL, 0, 0, 0, 0, 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'content_element/image/header_image_odd', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1034, 'headline', 229, 'tl_article', 128, 1555059685, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe. 929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1035, 'text', 229, 'tl_article', 256, 1555059685, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', 0, 0, 0, 0, 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 1, '', 'right', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1036, 'headline', 229, 'tl_article', 384, 1555059685, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1037, 'ct_wrapperStart', 229, 'tl_article', 512, 1555059685, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 0, '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1038, 'text', 229, 'tl_article', 640, 1555059685, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1039, 'text', 229, 'tl_article', 768, 1555059685, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1040, 'text', 229, 'tl_article', 896, 1555059685, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1041, 'text', 229, 'tl_article', 1024, 1555059685, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1042, 'ct_wrapperStop', 229, 'tl_article', 1152, 1555059685, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, '', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 0, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1045, 'image', 230, 'tl_article', 128, 1555060418, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:35:\"Headerbild mit Schräge nach rechts\";}', NULL, 0, 0, 0, 0, 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'content_element/image/header_image_odd', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1046, 'headline', 231, 'tl_article', 128, 1555060297, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe. 929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1047, 'text', 231, 'tl_article', 256, 1555060297, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', 0, 0, 0, 0, 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 1, '', 'right', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1048, 'headline', 231, 'tl_article', 384, 1555060297, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1049, 'ct_wrapperStart', 231, 'tl_article', 512, 1555060297, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 0, '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1050, 'text', 231, 'tl_article', 640, 1555060297, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1051, 'text', 231, 'tl_article', 768, 1555060297, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1052, 'text', 231, 'tl_article', 896, 1555060297, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1053, 'text', 231, 'tl_article', 1024, 1555060297, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1054, 'ct_wrapperStop', 231, 'tl_article', 1152, 1555060297, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, '', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 0, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1057, 'headline', 232, 'tl_article', 128, 1555060437, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe. 929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1058, 'text', 232, 'tl_article', 256, 1555060437, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', 0, 0, 0, 0, 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 1, '', 'right', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1059, 'headline', 232, 'tl_article', 384, 1555060437, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1060, 'ct_wrapperStart', 232, 'tl_article', 512, 1555060437, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 0, '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1061, 'text', 232, 'tl_article', 640, 1555060437, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1062, 'text', 232, 'tl_article', 768, 1555060437, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1063, 'text', 232, 'tl_article', 896, 1555060437, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1064, 'text', 232, 'tl_article', 1024, 1555060437, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1065, 'ct_wrapperStop', 232, 'tl_article', 1152, 1555060437, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, '', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 0, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1068, 'image', 234, 'tl_article', 128, 1664459796, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:25:\"Layout mit geradem Header\";}', NULL, 0, 0, 0, 0, 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'content_element/image/header_image_odd', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1069, 'headline', 235, 'tl_article', 128, 1555060887, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe. 929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1070, 'text', 235, 'tl_article', 256, 1555060887, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', 0, 0, 0, 0, 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 1, '', 'right', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1071, 'headline', 235, 'tl_article', 384, 1555060887, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1072, 'ct_wrapperStart', 235, 'tl_article', 512, 1555060887, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 0, '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1073, 'text', 235, 'tl_article', 640, 1555060887, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1074, 'text', 235, 'tl_article', 768, 1555060887, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1075, 'text', 235, 'tl_article', 896, 1555060887, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1076, 'text', 235, 'tl_article', 1024, 1555060887, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1077, 'ct_wrapperStop', 235, 'tl_article', 1152, 1555060887, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, '', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 0, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1081, 'image', 238, 'tl_article', 128, 1555061396, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:22:\"Elemente mit Schrägen\";}', NULL, 0, 0, 0, 0, 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'content_element/image/header_image_odd', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1082, 'headline', 239, 'tl_article', 64, 1555061513, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:37:\"Schräge - oben rechts - unten rechts\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-center', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1083, 'text', 239, 'tl_article', 128, 1555061529, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 391, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1085, 'text', 237, 'tl_article', 256, 1555061622, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', 0, 0, 0, 0, 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 1, '', 'right', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1086, 'text', 240, 'tl_article', 256, 1555061657, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', 0, 0, 0, 0, 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 1, '', 'right', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1087, 'headline', 241, 'tl_article', 64, 1555061727, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:35:\"Schräge - oben links - unten links\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-center', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1088, 'text', 241, 'tl_article', 128, 1555061671, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 391, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1089, 'text', 242, 'tl_article', 256, 1555061752, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', 0, 0, 0, 0, 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 1, '', 'right', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1090, 'headline', 243, 'tl_article', 64, 1555061799, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:36:\"Schräge - oben links - unten rechts\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-center', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1091, 'text', 243, 'tl_article', 128, 1555061752, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 391, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1092, 'text', 244, 'tl_article', 256, 1555061752, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', 0, 0, 0, 0, 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 1, '', 'right', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1093, 'headline', 245, 'tl_article', 64, 1555061872, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:36:\"Schräge - oben rechts - unten links\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-center', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1094, 'text', 245, 'tl_article', 128, 1555061752, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 391, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1095, 'text', 246, 'tl_article', 256, 1555061878, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', 0, 0, 0, 0, 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 1, '', 'right', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1096, 'headline', 247, 'tl_article', 64, 1555062327, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Schräge - nur oben rechts\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-center', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1097, 'text', 247, 'tl_article', 128, 1555062276, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 391, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1098, 'text', 248, 'tl_article', 256, 1555062276, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', 0, 0, 0, 0, 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', '', 1, '', 'right', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1104, 'image', 252, 'tl_article', 128, 1664361216, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:7:\"Kontakt\";}', NULL, 0, 0, 0, 0, 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', 'content_element/image/header_image_odd', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1105, 'headline', 251, 'tl_article', 256, 1555068793, 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:12:\"Social Media\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1106, 'ct_featureElement', 251, 'tl_article', 384, 1555068772, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Facebook

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-facebook-f', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1107, 'ct_featureElement', 251, 'tl_article', 512, 1555068772, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Twitter

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-twitter', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1108, 'ct_featureElement', 251, 'tl_article', 640, 1555068772, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Instagram

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-instagram', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1109, 'ct_featureElement', 251, 'tl_article', 768, 1555068772, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Pinterest

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-pinterest-p', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1110, 'ct_featureElement', 251, 'tl_article', 896, 1555068772, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Linked In

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-linkedin-in', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1111, 'ct_wrapperStart', 251, 'tl_article', 320, 1555069491, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"contact-icons\";}', 0, '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1112, 'ct_wrapperStop', 251, 'tl_article', 1024, 1555068866, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1113, 'ct_featureElement', 251, 'tl_article', 192, 1555069533, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

+ 49 (0) 0123 4567890

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-phone', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1114, 'ct_featureElement', 251, 'tl_article', 224, 1555069533, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

+ 49 (0) 0123 456789

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-mobile', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1115, 'ct_featureElement', 251, 'tl_article', 240, 1555069533, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

+ 49 (0) 0123 4567891

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-fax', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1116, 'ct_featureElement', 251, 'tl_article', 248, 1555069534, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

info@example.org

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'far fa-envelope', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1117, 'ct_wrapperStart', 251, 'tl_article', 160, 1555069542, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:13:\"contact-icons\";}', 0, '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1118, 'ct_wrapperStop', 251, 'tl_article', 252, 1555069547, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1119, 'sliderStart', 253, 'tl_article', 128, 1560511460, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 1, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1120, 'sliderElement', 253, 'tl_article', 192, 1560511460, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Dank der Saalkapazitäten fanden in dem traditionsreichen Haus zahlreiche Großveranstaltungen statt. Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', 1, 0, 0, 0, 0xc942253a467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Kultur & Freizeit', 'Mehr dazu', '{{event_url::26}}', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1121, 'sliderElement', 253, 'tl_article', 208, 1560511460, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', 1, 0, 0, 0, 0xc416cb81467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Sport', 'Mehr erfahren', '{{event_url::27}}', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1122, 'sliderElement', 253, 'tl_article', 216, 1560511460, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:21:\"Kaserne in Bohnitzsch\";}', '

Das Kasernengelände in Meißen-Bohnitzsch wurde 1936 angelegt und wurde ab Mai 1945 von der Sowjetunion genutzt. Unter anderem war das 7. Garde-Panzerregiment der GSSD hier untergebracht.

', 1, 0, 0, 0, 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Militär', 'Mehr dazu', '{{news_url::12}}', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1123, 'sliderElement', 253, 'tl_article', 224, 1560511460, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Keramikfabrik\";}', '

Bei der Produktion von Kachelöfen, Wandplatten, Porzellanen und Schamotte war Meißen um 1900 führend in Deutschland. Die für Kachelöfen entwickelte Meißner Patentkachel war wohl in den meisten deutschen Wohnzimmern zu finden.

', 1, 0, 0, 0, 0xae24b6cc467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Industrie', 'Mehr dazu', '{{link_url::120}}', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1124, 'sliderElement', 253, 'tl_article', 248, 1560511460, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:29:\"E-Werk in der Brauhausstraße\";}', '

Das ehemalige Elektrizitätswerk an der Brauhausstraße ging 1911 in Betrieb und lieferte Strom für die Meißner Innenstadt. Nach 1990 wurde das E-Werk stillgelegt und 2004 wurde das Kesselhaus im hinteren Grundstücksbereich abgerissen.

', 1, 0, 0, 0, 0xb92fb24e467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Industrie', 'Weiterlesen', '{{link_url::121}}', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1125, 'sliderElement', 253, 'tl_article', 252, 1560511460, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"VEB Ziegelwerk Rotes Haus\";}', '

Die Ziegelei am Roten Haus war die letzte ihrer Art in Meißen, sie war nach fast 140 Jahren Produktion 1993 geschlossen worden.

', 1, 0, 0, 0, 0xc09740c7467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Industrie', 'Weiterlesen', '{{news_url::23}}', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1126, 'sliderStop', 253, 'tl_article', 256, 1560511460, '', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, '', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1129, 'headline', 255, 'tl_article', 128, 1560782354, 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:14:\"Modale Dialoge\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', 'none', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', 0, '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1130, 'module', 255, 'tl_article', 256, 1560782390, 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', 'none', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 418, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1131, 'module', 255, 'tl_article', 384, 1560783378, 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', 'none', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 419, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1132, 'module', 255, 'tl_article', 512, 1560783579, 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', 'none', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 420, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1133, 'module', 255, 'tl_article', 640, 1560783641, 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', 'none', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 421, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1134, 'module', 255, 'tl_article', 448, 1560843081, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', 'none', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 422, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1135, 'module', 197, 'tl_article', 64, 1641290342, 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', NULL, 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 423, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 1, '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', NULL, NULL, NULL, NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1137, 'gallery', 156, 'tl_article', 192, 1644934174, 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:10:\"Referenzen\";}', NULL, 0, 0, 0, 0, NULL, '', '', 'a:3:{i:0;s:3:\"510\";i:1;s:3:\"200\";i:2;s:4:\"crop\";}', '', 1, '', '', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, 0x613a323a7b693a303b733a31363a22b92fb24e467611e9a91c408d5c22fa41223b693a313b733a31363a22c09740c7467611e9a91c408d5c22fa41223b7d, 0, 2, 0, 0, 'custom', 0, 'gallery_default_references', '', NULL, '', '', 0x00000000000000000000000000000000, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL); +INSERT INTO `tl_content` (`id`, `type`, `pid`, `ptable`, `sorting`, `tstamp`, `headline`, `text`, `addImage`, `showPreview`, `inline`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `markdownSource`, `code`, `url`, `target`, `overwriteLink`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `playerOptions`, `playerStart`, `playerStop`, `playerCaption`, `playerAspect`, `splashImage`, `playerPreload`, `playerColor`, `youtubeOptions`, `vimeoOptions`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `data`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `cssID`, `invisible`, `start`, `stop`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `unfilteredHtml`) VALUES (1138, 'text', 236, 'tl_article', 128, 1645107384, 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Inhalt für rechte Spalte ...

', 0, 0, 0, 0, NULL, '', '', '', '', 0, '', 'above', NULL, '', NULL, NULL, '', 0, 0, 0, 0, 0, 'ascending', '', '', '', '', 'sourceText', NULL, '', '', 0, '', '', '', '', 0, NULL, 0, 4, 0, 0, '', 0, '', '', NULL, '', '', NULL, '', NULL, 0, 0, '', '', 0, '', '', NULL, NULL, 0, 300, 0, 0, NULL, 0, 0, 0, 0, 0, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', NULL, NULL, NULL, NULL); + +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (718, NULL, 1538489608, 0x5556381bc64d11e88ff2408d5c22fa41, 'folder', 'files/odd', '', 'c62b1ec4b5c5a4e2a186bce08cb64b48', NULL, 1, 'odd', '0', '0', '0', '0', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (720, 0x5556381bc64d11e88ff2408d5c22fa41, 1538489691, 0x86ee99abc64d11e88ff2408d5c22fa41, 'folder', 'files/odd/img', '', '079c14b1399536cf8514e64cb93453ed', NULL, 1, 'img', '0', '0', '0', '0', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (755, 0x86ee99abc64d11e88ff2408d5c22fa41, 1552579599, 0x267f1df5467311e9a91c408d5c22fa41, 'folder', 'files/odd/img/verlassene-orte-meissen', '', '5652813e47ef238e3e5e167a24da3428', NULL, 1, 'verlassene-orte-meissen', '0', '0', '0', '0', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (796, 0x267f1df5467311e9a91c408d5c22fa41, 1553878188, 0xae24b6cc467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/keramikfabrik.jpg', 'jpg', 'b477fb4521e9dea4d4ccf8cddc88bdb5', NULL, 1, 'keramikfabrik.jpg', '0.00048828125', '0.243401759531', '0.99951171875', '0.593108504399', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (797, 0x267f1df5467311e9a91c408d5c22fa41, 1552658157, 0xb0ad636c467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/zuckerwarenfabrik-elbdom.jpg', 'jpg', '01b19ac855e4dc1edf18a048cfaa8100', NULL, 1, 'zuckerwarenfabrik-elbdom.jpg', '0', '0', '0', '0', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (798, 0x267f1df5467311e9a91c408d5c22fa41, 1552658153, 0xb0b560c5467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/wohnhaus-rosengasse-1.jpg', 'jpg', '6b30092e92ea58c487f633022bdafa7a', NULL, 1, 'wohnhaus-rosengasse-1.jpg', '0', '0', '0', '0', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (799, 0x267f1df5467311e9a91c408d5c22fa41, 1552658156, 0xb2d63e05467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/wohnhaus-rosengasse-3.jpg', 'jpg', '33416ee1cda94de335dba34bfe8c34ee', NULL, 1, 'wohnhaus-rosengasse-3.jpg', '0', '0', '0', '0', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (800, 0x267f1df5467311e9a91c408d5c22fa41, 1552658152, 0xb525bf9c467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/wohnhaus-goernische-gasse.jpg', 'jpg', '9e9abd17d1a49053d11924edcebccf1e', NULL, 1, 'wohnhaus-goernische-gasse.jpg', '0', '0.139205662603', '1', '0.181281950452', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (801, 0x267f1df5467311e9a91c408d5c22fa41, 1552658155, 0xb81fbc97467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/wohnhaus-rosengasse-2.jpg', 'jpg', 'ef1a07b23859899a734e925d7a2c9700', NULL, 1, 'wohnhaus-rosengasse-2.jpg', '0', '0.246356696738', '1', '0.19465648855', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (802, 0x267f1df5467311e9a91c408d5c22fa41, 1644934347, 0xb92fb24e467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/e-werk-brauhausstrasse-1.jpg', 'jpg', '61cdb7bef90f13a7136a8a4b25dc905f', NULL, 1, 'e-werk-brauhausstrasse-1.jpg', '0.00732421875', '0.0791556728232', '0.99267578125', '0.529683377309', 0x613a313a7b733a323a226465223b613a353a7b733a353a227469746c65223b733a383a225265666572656e7a223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a32323a22452d5765726b20427261756861757373747261c39f65223b733a373a226c6963656e7365223b733a303a22223b7d7d); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (804, 0x267f1df5467311e9a91c408d5c22fa41, 1644934343, 0xc09740c7467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/alte-ziegelei-1.jpg', 'jpg', 'a247b7b1e54abc0c5046f6d78607f185', NULL, 1, 'alte-ziegelei-1.jpg', '0.01025390625', '0.212609970674', '0.98974609375', '0.558651026393', 'a:1:{s:2:\"de\";a:5:{s:5:\"title\";s:8:\"Referenz\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:13:\"Alte Ziegelei\";s:7:\"license\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (805, 0x267f1df5467311e9a91c408d5c22fa41, 1552658147, 0xc416cb81467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/jahnhalle.jpg', 'jpg', '8f7955f5b457654b74a15e88654f8728', NULL, 1, 'jahnhalle.jpg', '0', '0.148093841642', '1', '0.646627565982', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (806, 0x267f1df5467311e9a91c408d5c22fa41, 1552658145, 0xc433b88f467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/alte-ziegelei-3.jpg', 'jpg', '40936257485cd57168f9fa455e933d5a', NULL, 1, 'alte-ziegelei-3.jpg', '0', '0', '0', '0', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (807, 0x267f1df5467311e9a91c408d5c22fa41, 1552658150, 0xc6eaaf6d467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/rittergut-coelln.jpg', 'jpg', 'f630378402f55ff1df4e8bed31098d01', NULL, 1, 'rittergut-coelln.jpg', '0', '0.283724340176', '1', '0.401759530792', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (809, 0x267f1df5467311e9a91c408d5c22fa41, 1553878145, 0xc942253a467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/hamburger-hof.jpg', 'jpg', '3f64cf746174ec835dc2d5670811ffaa', NULL, 1, 'hamburger-hof.jpg', '0.00341796875', '0.110520722635', '0.99658203125', '0.672688629118', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (810, 0x267f1df5467311e9a91c408d5c22fa41, 1553878163, 0xcbc4a14c467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/kaserne-bohnitzsch-1.jpg', 'jpg', '6ca91cbb5c7f27795f171a1d122290d4', NULL, 1, 'kaserne-bohnitzsch-1.jpg', '0.0078125', '0.183284457478', '0.9921875', '0.609970674487', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (811, 0x267f1df5467311e9a91c408d5c22fa41, 1553878174, 0xccb24364467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/kaserne-bohnitzsch-2.jpg', 'jpg', '8839c2910a3f63f8607f94705aa10c4b', NULL, 1, 'kaserne-bohnitzsch-2.jpg', '0', '0.127565982405', '1', '0.681085043988', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (812, 0x267f1df5467311e9a91c408d5c22fa41, 1553878204, 0xce7c80c2467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/landkrankenhaus.jpg', 'jpg', 'a3b13f1be8e11c70c86253fa827f299a', NULL, 1, 'landkrankenhaus.jpg', '0.0048828125', '0.280575539568', '0.9951171875', '0.531066056246', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (813, 0x267f1df5467311e9a91c408d5c22fa41, 1552658147, 0xd285349b467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/herrenhaus-dresdner-strasse.jpg', 'jpg', 'a0e798cdd651953ae3f129724fcb3d7d', NULL, 1, 'herrenhaus-dresdner-strasse.jpg', '0', '0', '0', '0', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (815, 0x86ee99abc64d11e88ff2408d5c22fa41, 1552657625, 0xc96d0cf7472811e9a91c408d5c22fa41, 'file', 'files/odd/img/ODD_Logo.png', 'png', '0dd572b40f1e9c2843715f9d1dcc677e', NULL, 1, 'ODD_Logo.png', '0', '0', '0', '0', 'a:1:{s:2:\"de\";a:4:{s:5:\"title\";s:0:\"\";s:3:\"alt\";s:33:\"ODD Logo - Exploring Contao Theme\";s:4:\"link\";s:0:\"\";s:7:\"caption\";s:0:\"\";}}'); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (820, 0x5556381bc64d11e88ff2408d5c22fa41, 1553271254, 0x89152b404cbd11e9a91c408d5c22fa41, 'folder', 'files/odd/scss', '', 'af3cb9077c044201ad94991c70c728d1', NULL, 1, 'scss', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (821, 0x89152b404cbd11e9a91c408d5c22fa41, 1575380404, 0x89152b384cbd11e9a91c408d5c22fa41, 'file', 'files/odd/scss/_custom_colors.scss', 'scss', 'faa3e283a513251c3af4f09bf6d5d961', NULL, 1, '_custom_colors.scss', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (822, 0x89152b404cbd11e9a91c408d5c22fa41, 1553271254, 0x89152b324cbd11e9a91c408d5c22fa41, 'file', 'files/odd/scss/_custom_variables.scss', 'scss', '4791bf84f66d4b442eeaeac9bb8a8c72', NULL, 1, '_custom_variables.scss', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (823, 0x89152b404cbd11e9a91c408d5c22fa41, 1575380926, 0x89152b2b4cbd11e9a91c408d5c22fa41, 'file', 'files/odd/scss/custom.scss', 'scss', '9cbb457cbe5c21e7a8a0f3992523afdb', NULL, 1, 'custom.scss', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (854, 0x267f1df5467311e9a91c408d5c22fa41, 1555065120, 0x34b541155d0e11e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/IMG_3790_1_HDR_tonemapped.jpg', 'jpg', 'd98ebb0c9aad9dd1bc4be9bfdc739a66', NULL, 1, 'IMG_3790_1_HDR_tonemapped.jpg', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (855, 0x267f1df5467311e9a91c408d5c22fa41, 1555065120, 0x34b5410d5d0e11e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/PICT0004_03_8bit.jpg', 'jpg', '6c55203d749a9ba94106930d66f9044b', NULL, 1, 'PICT0004_03_8bit.jpg', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (856, 0x267f1df5467311e9a91c408d5c22fa41, 1555065120, 0x34b541065d0e11e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/e-werk-brauhausstrasse-2.jpg', 'jpg', 'e0d8a92393c972e5cd168d5a78dd67b7', NULL, 1, 'e-werk-brauhausstrasse-2.jpg', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (857, 0x86ee99abc64d11e88ff2408d5c22fa41, 1555316209, 0xd163d7285f5611e989ece0d55edd9ad9, 'file', 'files/odd/img/favicon.ico', 'ico', '75ab0f0a098e0a63c5a68c9cb577b9e1', NULL, 1, 'favicon.ico', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (858, NULL, 1638524413, 0x03978b0f541d11ec8ee0e0d55e59bff3, 'folder', 'files/social-feed', '', '4d2d253fd689642108b33d6deb15f113', NULL, 1, 'social-feed', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (859, 0x03978b0f541d11ec8ee0e0d55e59bff3, 1638524413, 0x03978b04541d11ec8ee0e0d55e59bff3, 'folder', 'files/social-feed/70570732', '', 'a6fbae4602a396d3aaa1b982987550d6', NULL, 1, '70570732', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (860, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524413, 0x03978afc541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6868857032481538048.jpg', 'jpg', '28d81d1e1217d5fc79781bb9becc742a', NULL, 1, '6868857032481538048.jpg', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (861, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524413, 0x03978af5541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6863780628970684416.jpg', 'jpg', '9a269aaa9d7811b160d070621ebb40d3', NULL, 1, '6863780628970684416.jpg', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (862, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524414, 0x03978aeb541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6859777035833786368.jpg', 'jpg', '0f88e5d0ea5396e6b111e134321e5033', NULL, 1, '6859777035833786368.jpg', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (863, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524414, 0x03978ae4541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6821723322980589568.jpg', 'jpg', '6cc89d2eb80b2e58a96c8a8919f6bc3b', NULL, 1, '6821723322980589568.jpg', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (864, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524414, 0x03978adc541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6814107593779269633.jpg', 'jpg', '8ed28675f33d2f3fa6ee96979e532dc5', NULL, 1, '6814107593779269633.jpg', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (865, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524415, 0x03978ad4541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6810600668026454016.jpg', 'jpg', '11df1eb0f5b8469080bbaa6a8e4a8841', NULL, 1, '6810600668026454016.jpg', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (866, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524415, 0x03978ac8541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6806161831481159680.jpg', 'jpg', 'b4fad794ccfcf56f75617f9614f7c243', NULL, 1, '6806161831481159680.jpg', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (867, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524420, 0x03978a95541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6802949577843453952.jpg', 'jpg', '76ea90aba86bbf728e9a407154bbbc11', NULL, 1, '6802949577843453952.jpg', '0', '0', '0', '0', NULL); +INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `lastModified`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES (868, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524420, 0x08043c64541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6800429967206359041.jpg', 'jpg', 'ffeafff60a8a39c0ae7f6ebe37e4baa0', NULL, 1, '6800429967206359041.jpg', '0', '0', '0', '0', NULL); + +INSERT INTO `tl_form` (`id`, `tstamp`, `title`, `alias`, `jumpTo`, `sendViaEmail`, `mailerTransport`, `recipient`, `subject`, `format`, `skipEmpty`, `storeValues`, `targetTable`, `customTpl`, `method`, `novalidate`, `attributes`, `formID`, `allowTags`) VALUES (6, 1539346644, 'Odd / Beispielformular', 'mate-beispielformular', 135, 1, '', 'info@example.de', 'Formular-Anfrage mate.contao-themes.net', 'raw', 0, 0, '', 'form_wrapperform_wrapperform_wrapper (Standard)', 'POST', 0, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', 0); +INSERT INTO `tl_form` (`id`, `tstamp`, `title`, `alias`, `jumpTo`, `sendViaEmail`, `mailerTransport`, `recipient`, `subject`, `format`, `skipEmpty`, `storeValues`, `targetTable`, `customTpl`, `method`, `novalidate`, `attributes`, `formID`, `allowTags`) VALUES (8, 1539346653, 'Odd / Kontaktformular', 'mate-kontaktformular', 135, 1, '', 'info@example.de', 'Anfrage Kontaktformular bei Mate Theme', 'raw', 0, 0, '', 'form_wrapper (Standard)', 'POST', 0, 'a:2:{i:0;s:0:\"\";i:1;s:4:\"test\";}', '', 0); + +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (22, 'text', 6, 128, 1511533531, 'Name', 'name', NULL, NULL, NULL, 1, '', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;i:4;i:1;i:40;}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', 0, NULL, 0, 0, '', '', 0, 0, '', '', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (23, 'text', 6, 64, 1511535789, 'Vorname', 'vorname', NULL, NULL, NULL, 0, '', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;i:4;i:1;i:40;}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', 0, NULL, 0, 0, '', '', 0, 0, '', '', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (27, 'text', 6, 640, 1511533525, 'E-Mail', 'email', NULL, NULL, NULL, 0, 'email', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;i:4;i:1;i:40;}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', 0, NULL, 0, 0, '', '', 0, 0, '', '', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (28, 'text', 6, 768, 1511533391, 'Telefon', 'telefon', NULL, NULL, NULL, 0, 'phone', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;i:4;i:1;i:40;}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', 0, NULL, 0, 0, '', '', 0, 0, '', '', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (29, 'textarea', 6, 896, 1511533449, 'Ihre Nachricht', 'nachricht', NULL, NULL, NULL, 1, '', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;s:1:\"4\";i:1;s:2:\"40\";}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', 0, NULL, 0, 0, '', '', 0, 0, '', '', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (30, 'submit', 6, 1024, 1511533458, '', '', NULL, NULL, NULL, 0, '', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;i:4;i:1;i:40;}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', 0, NULL, 0, 0, '', '', 0, 0, '', 'Absenden', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (31, 'checkbox', 6, 876, 1511786014, 'Checkbox-Menü', 'kontaktart', NULL, NULL, 'a:3:{i:0;a:2:{s:5:\"value\";s:8:\"auswahl1\";s:5:\"label\";s:9:\"Auswahl 1\";}i:1;a:2:{s:5:\"value\";s:8:\"auswahl2\";s:5:\"label\";s:9:\"Auswahl 2\";}i:2;a:2:{s:5:\"value\";s:8:\"auswahl3\";s:5:\"label\";s:9:\"Auswahl 3\";}}', 0, '', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;i:4;i:1;i:40;}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', 0, NULL, 0, 0, '', '', 0, 0, '', '', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (32, 'select', 6, 864, 1664375496, 'Wie sind Sie auf uns aufmerksam geworden?', 'wie-gefunden', NULL, NULL, 0x613a363a7b693a303b613a323a7b733a353a2276616c7565223b733a383a22696e7465726e6574223b733a353a226c6162656c223b733a383a22496e7465726e6574223b7d693a313b613a323a7b733a353a2276616c7565223b733a373a227a656974756e67223b733a353a226c6162656c223b733a373a225a656974756e67223b7d693a323b613a323a7b733a353a2276616c7565223b733a31313a22706572736f656e6c696368223b733a353a226c6162656c223b733a32333a2250657273c3b66e6c6963686520456d706665686c756e67223b7d693a333b613a323a7b733a353a2276616c7565223b733a353a22726164696f223b733a353a226c6162656c223b733a353a22526164696f223b7d693a343b613a323a7b733a353a2276616c7565223b733a323a227476223b733a353a226c6162656c223b733a323a225456223b7d693a353b613a323a7b733a353a2276616c7565223b733a393a22736f6e737469676573223b733a353a226c6162656c223b733a393a22536f6e737469676573223b7d7d, 0, '', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;i:4;i:1;i:40;}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', 0, NULL, 0, 0, '', '', 0, 0, '', '', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (33, 'radio', 6, 888, 1511536334, 'Radio-Button-Menü', 'radio-button', NULL, NULL, 'a:4:{i:0;a:2:{s:5:\"value\";s:5:\"wert1\";s:5:\"label\";s:6:\"Wert 1\";}i:1;a:2:{s:5:\"value\";s:5:\"wert2\";s:5:\"label\";s:6:\"Wert 2\";}i:2;a:2:{s:5:\"value\";s:5:\"wert3\";s:5:\"label\";s:6:\"Wert 3\";}i:3;a:2:{s:5:\"value\";s:5:\"wert4\";s:5:\"label\";s:6:\"Wert 4\";}}', 0, '', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;i:4;i:1;i:40;}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', 0, NULL, 0, 0, '', '', 0, 0, '', '', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (34, 'upload', 6, 892, 1645102642, 'Dateiupload', 'dateiupload', NULL, NULL, NULL, 0, '', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;i:4;i:1;i:40;}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', 1, NULL, 0, 1, '', '', 0, 0, 'form_upload_odd', '', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (47, 'text', 6, 816, 1511781024, 'Datumsauswahl', 'datepicker', NULL, NULL, NULL, 0, '', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;i:4;i:1;i:40;}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', 0, NULL, 0, 0, 'datepicker', '', 0, 0, '', '', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (48, 'text', 6, 840, 1511781167, 'Zeitauswahl', 'timepicker', NULL, NULL, NULL, 0, '', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;i:4;i:1;i:40;}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', 0, NULL, 0, 0, 'timepicker', '', 0, 0, '', '', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (50, 'text', 8, 128, 1555069694, 'Name', 'name', NULL, NULL, NULL, 1, '', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;i:4;i:1;i:40;}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', 0, NULL, 0, 0, '', '', 0, 0, '', '', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (52, 'text', 8, 384, 1512724283, 'E-Mail', 'email', NULL, NULL, NULL, 1, 'email', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;i:4;i:1;i:40;}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', 0, NULL, 0, 0, '', '', 0, 0, '', '', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (53, 'textarea', 8, 512, 1512724310, 'Ihre Nachricht', 'nachricht', NULL, NULL, NULL, 1, '', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;s:1:\"4\";i:1;s:2:\"40\";}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', 0, NULL, 0, 0, '', '', 0, 0, '', '', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (54, 'submit', 8, 640, 1512724321, '', '', NULL, NULL, NULL, 0, '', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;i:4;i:1;i:40;}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', 0, NULL, 0, 0, '', '', 0, 0, '', 'Absenden', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (58, 'captcha', 8, 576, 1555069708, '', '', NULL, NULL, NULL, 0, '', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;i:4;i:1;i:40;}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', 0, NULL, 0, 0, '', '', 0, 0, '', '', 0, NULL, 0, ''); +INSERT INTO `tl_form_field` (`id`, `type`, `pid`, `sorting`, `tstamp`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `customRgxp`, `errorMsg`, `minlength`, `maxlength`, `maxImageWidth`, `maxImageHeight`, `minval`, `maxval`, `step`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `advancedCss`) VALUES (60, 'explanation', 8, 768, 1555069889, '', '', '

 

\n

* Pflichtfelder

', NULL, NULL, 0, '', '', '', '', 0, 0, 0, 0, '0', '0', '', 'a:2:{i:0;i:4;i:1;i:40;}', 0, 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', 0, NULL, 0, 0, '', '', 0, 0, '', '', 0, NULL, 0, ''); + +INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `formats`, `skipIfDimensionsMatch`, `lazyLoading`) VALUES (16, 17, 1555080617, 'Headerbild', '', '', '', 1920, 400, 'crop', 0, '', 1, 0); +INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `formats`, `skipIfDimensionsMatch`, `lazyLoading`) VALUES (17, 17, 1560847552, 'Headerbild mit Schräge', '', '1x, 1.5x, 2x', '', 1920, 650, 'crop', 0, '', 1, 0); +INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `formats`, `skipIfDimensionsMatch`, `lazyLoading`) VALUES (18, 17, 1552657088, 'Slider', '', '', '', 1920, 750, 'crop', 0, '', 1, 0); +INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `formats`, `skipIfDimensionsMatch`, `lazyLoading`) VALUES (19, 17, 1525783920, 'Teaserboxen', '', '1x, 1.5x, 2x', '', 350, 200, 'crop', 0, '', 1, 0); +INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `formats`, `skipIfDimensionsMatch`, `lazyLoading`) VALUES (22, 17, 1528372682, 'Team', '', '1x, 1.5x, 2x', '', 350, 250, 'crop', 100, '', 1, 0); +INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `formats`, `skipIfDimensionsMatch`, `lazyLoading`) VALUES (23, 17, 1539099645, 'News / Listenansicht', '', '', '', 540, 350, 'crop', 100, '', 1, 0); +INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `formats`, `skipIfDimensionsMatch`, `lazyLoading`) VALUES (24, 17, 1560847649, 'Slider mit Schräge', '', '', '', 1920, 900, 'crop', 0, '', 1, 0); +INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `formats`, `skipIfDimensionsMatch`, `lazyLoading`) VALUES (25, 17, 1552657717, 'Logo', '', '1x, 1.5x, 2x', '', NULL, 90, 'box', NULL, '', 1, 0); +INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `formats`, `skipIfDimensionsMatch`, `lazyLoading`) VALUES (26, 17, 1572884258, 'Maklermodul / Listenansicht', '', '', '', 357, 200, 'crop', 0, '', 0, 0); + +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (6, 16, 128, 1555080029, '(max-width: 991px)', '1x, 1.5x, 2x', '', 991, 350, 'crop', NULL, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (7, 17, 128, 1555080183, '(max-width: 767px)', '1x, 1.5x, 2x', '', 767, 450, 'crop', NULL, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (8, 18, 128, 1525699627, '(max-width:767px)', '1x, 1.5x, 2x', '', 767, 500, 'crop', 0, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (9, 18, 256, 1525787411, '(max-width:1024px)', '1x, 1.5x, 2x', '', 1024, 500, 'crop', 0, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (10, 18, 384, 1525856669, '(max-width:1300px)', '1x, 1.5x, 2x', '', 1300, 550, 'crop', 0, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (13, 22, 128, 1528372677, '(max-width:1199px)', '1x, 1.5x, 2x', '', 300, 200, 'crop', 100, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (14, 22, 64, 1528372754, '(max-width:991px)', '1x, 1.5x, 2x', '', 420, 300, 'crop', 100, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (15, 22, 32, 1528372807, '(max-width:767px)', '1x, 1.5x, 2x', '', 510, 350, 'crop', 100, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (16, 22, 16, 1528372855, '(max-width:400px)', '1x, 1.5x, 2x', '', 370, 255, 'crop', 100, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (20, 24, 128, 1552659511, '(max-width: 1450px)', '1x, 1.5x, 2x', '', 1455, 800, 'crop', 0, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (21, 24, 64, 1552659506, '(max-width: 1150px)', '1x, 1.5x, 2x', '', 1150, 800, 'crop', 0, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (22, 24, 32, 1552659500, '(max-width:992px)', '1x, 1.5x, 2x', '', 992, 800, 'crop', 0, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (23, 24, 16, 1552660075, '(max-width: 767px)', '1x, 1.5x, 2x', '', 767, 500, 'crop', 0, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (25, 19, 128, 1552663259, '(max-width: 767px)', '1x, 1.5x, 2x', '', 510, 300, 'crop', 0, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (27, 17, 256, 1555079599, '(max-width: 991px)', '1x, 1.5x, 2x', '', 991, 500, 'crop', NULL, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (28, 17, 64, 1555079881, '(max-width: 450px)', '1x, 1.5x, 2x', '', 450, 400, 'crop', NULL, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (29, 16, 64, 1555080549, '(max-width: 450px)', '1x, 1.5x, 2x', '', 450, 250, 'crop', NULL, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (30, 16, 256, 1555080674, '(max-width: 1200px)', '1x, 1.5x, 2x', '', 1200, 350, 'crop', NULL, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (31, 24, 8, 1560847732, '(max-width: 450px)', '1x, 1.5x, 2x', '', 450, 295, 'crop', 0, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (32, 18, 64, 1560847802, '(max-width: 450px)', '1x, 1.5x, 2x', '', 450, 295, 'crop', 0, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (33, 19, 64, 1560847852, '(max-width: 450px)', '1x, 1.5x, 2x', '', 380, 225, 'crop', 0, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (34, 26, 128, 1572884653, '(max-width:991px)', '', '', 417, 233, 'crop', 0, 0); +INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES (35, 26, 64, 1572884651, '(max-width:767px)', '', '', 511, 286, 'crop', 0, 0); + +INSERT INTO `tl_layout` (`id`, `pid`, `tstamp`, `name`, `rows`, `headerHeight`, `footerHeight`, `cols`, `widthLeft`, `widthRight`, `sections`, `framework`, `external`, `combineScripts`, `modules`, `template`, `minifyMarkup`, `lightboxSize`, `defaultImageDensities`, `viewport`, `titleTag`, `cssClass`, `onload`, `head`, `addJQuery`, `jquery`, `addMooTools`, `mootools`, `analytics`, `externalJs`, `scripts`, `script`, `static`, `width`, `align`) VALUES (55, 17, 1664362913, 'Einspaltiges Layout / Schräger Header', '3rw', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '1cl', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '', 'a:1:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:2:\"id\";s:0:\"\";s:8:\"template\";s:13:\"block_section\";s:8:\"position\";s:3:\"top\";}}', '', NULL, 1, 'a:5:{i:0;a:3:{s:3:\"mod\";s:3:\"382\";s:3:\"col\";s:6:\"header\";s:6:\"enable\";s:1:\"1\";}i:1;a:3:{s:3:\"mod\";s:1:\"0\";s:3:\"col\";s:6:\"header\";s:6:\"enable\";s:1:\"1\";}i:2;a:3:{s:3:\"mod\";s:1:\"0\";s:3:\"col\";s:4:\"main\";s:6:\"enable\";s:1:\"1\";}i:3;a:3:{s:3:\"mod\";s:3:\"372\";s:3:\"col\";s:6:\"footer\";s:6:\"enable\";s:1:\"1\";}i:4;a:3:{s:3:\"mod\";s:3:\"371\";s:3:\"col\";s:6:\"footer\";s:6:\"enable\";s:1:\"1\";}}', 'fe_page_odd', 1, 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', 'width=device-width, initial-scale=1, shrink-to-fit=no', '', '', '', NULL, 1, 'a:2:{i:0;s:11:\"j_accordion\";i:1;s:10:\"j_colorbox\";}', 0, NULL, NULL, NULL, 'a:1:{i:0;s:9:\"js_slider\";}', NULL, 0, '', 'center'); +INSERT INTO `tl_layout` (`id`, `pid`, `tstamp`, `name`, `rows`, `headerHeight`, `footerHeight`, `cols`, `widthLeft`, `widthRight`, `sections`, `framework`, `external`, `combineScripts`, `modules`, `template`, `minifyMarkup`, `lightboxSize`, `defaultImageDensities`, `viewport`, `titleTag`, `cssClass`, `onload`, `head`, `addJQuery`, `jquery`, `addMooTools`, `mootools`, `analytics`, `externalJs`, `scripts`, `script`, `static`, `width`, `align`) VALUES (56, 17, 1664362923, 'Zweispaltiges Layout / Linke Spalte / Schräger Header', '3rw', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '2cll', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '', 'a:1:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:2:\"id\";s:0:\"\";s:8:\"template\";s:13:\"block_section\";s:8:\"position\";s:3:\"top\";}}', '', NULL, 1, 'a:7:{i:0;a:3:{s:3:\"mod\";s:3:\"382\";s:3:\"col\";s:6:\"header\";s:6:\"enable\";s:1:\"1\";}i:1;a:3:{s:3:\"mod\";s:1:\"0\";s:3:\"col\";s:6:\"header\";s:6:\"enable\";s:1:\"1\";}i:2;a:3:{s:3:\"mod\";s:3:\"384\";s:3:\"col\";s:4:\"left\";s:6:\"enable\";s:1:\"1\";}i:3;a:3:{s:3:\"mod\";s:1:\"0\";s:3:\"col\";s:4:\"left\";s:6:\"enable\";s:1:\"1\";}i:4;a:3:{s:3:\"mod\";s:1:\"0\";s:3:\"col\";s:4:\"main\";s:6:\"enable\";s:1:\"1\";}i:5;a:3:{s:3:\"mod\";s:3:\"372\";s:3:\"col\";s:6:\"footer\";s:6:\"enable\";s:1:\"1\";}i:6;a:3:{s:3:\"mod\";s:3:\"371\";s:3:\"col\";s:6:\"footer\";s:6:\"enable\";s:1:\"1\";}}', 'fe_page_odd_left', 1, 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', 'width=device-width, initial-scale=1, shrink-to-fit=no', '', 'left-col-layout', '', NULL, 1, 'a:2:{i:0;s:11:\"j_accordion\";i:1;s:10:\"j_colorbox\";}', 0, NULL, NULL, NULL, 'a:1:{i:0;s:9:\"js_slider\";}', NULL, 0, '', 'center'); +INSERT INTO `tl_layout` (`id`, `pid`, `tstamp`, `name`, `rows`, `headerHeight`, `footerHeight`, `cols`, `widthLeft`, `widthRight`, `sections`, `framework`, `external`, `combineScripts`, `modules`, `template`, `minifyMarkup`, `lightboxSize`, `defaultImageDensities`, `viewport`, `titleTag`, `cssClass`, `onload`, `head`, `addJQuery`, `jquery`, `addMooTools`, `mootools`, `analytics`, `externalJs`, `scripts`, `script`, `static`, `width`, `align`) VALUES (57, 17, 1664362934, 'Zweispaltiges Layout / Rechte Spalte / Schräger Header', '3rw', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '2clr', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:1:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:2:\"id\";s:0:\"\";s:8:\"template\";s:13:\"block_section\";s:8:\"position\";s:3:\"top\";}}', '', NULL, 1, 'a:7:{i:0;a:3:{s:3:\"mod\";s:3:\"382\";s:3:\"col\";s:6:\"header\";s:6:\"enable\";s:1:\"1\";}i:1;a:3:{s:3:\"mod\";s:1:\"0\";s:3:\"col\";s:6:\"header\";s:6:\"enable\";s:1:\"1\";}i:2;a:3:{s:3:\"mod\";s:3:\"384\";s:3:\"col\";s:5:\"right\";s:6:\"enable\";s:1:\"1\";}i:3;a:3:{s:3:\"mod\";s:1:\"0\";s:3:\"col\";s:5:\"right\";s:6:\"enable\";s:1:\"1\";}i:4;a:3:{s:3:\"mod\";s:1:\"0\";s:3:\"col\";s:4:\"main\";s:6:\"enable\";s:1:\"1\";}i:5;a:3:{s:3:\"mod\";s:3:\"372\";s:3:\"col\";s:6:\"footer\";s:6:\"enable\";s:1:\"1\";}i:6;a:3:{s:3:\"mod\";s:3:\"371\";s:3:\"col\";s:6:\"footer\";s:6:\"enable\";s:1:\"1\";}}', 'fe_page_odd_right', 1, 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', 'width=device-width, initial-scale=1, shrink-to-fit=no', '', 'left-col-layout', '', NULL, 1, 'a:2:{i:0;s:11:\"j_accordion\";i:1;s:10:\"j_colorbox\";}', 0, NULL, NULL, NULL, 'a:1:{i:0;s:9:\"js_slider\";}', NULL, 0, '', 'center'); +INSERT INTO `tl_layout` (`id`, `pid`, `tstamp`, `name`, `rows`, `headerHeight`, `footerHeight`, `cols`, `widthLeft`, `widthRight`, `sections`, `framework`, `external`, `combineScripts`, `modules`, `template`, `minifyMarkup`, `lightboxSize`, `defaultImageDensities`, `viewport`, `titleTag`, `cssClass`, `onload`, `head`, `addJQuery`, `jquery`, `addMooTools`, `mootools`, `analytics`, `externalJs`, `scripts`, `script`, `static`, `width`, `align`) VALUES (58, 17, 1644834189, 'Dreispaltiges Layout / Linke und rechte Spalte / Schräger Header', '3rw', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '3cl', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:1:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:2:\"id\";s:0:\"\";s:8:\"template\";s:13:\"block_section\";s:8:\"position\";s:3:\"top\";}}', '', NULL, 1, 'a:9:{i:0;a:3:{s:3:\"mod\";s:3:\"382\";s:3:\"col\";s:6:\"header\";s:6:\"enable\";s:1:\"1\";}i:1;a:3:{s:3:\"mod\";s:1:\"0\";s:3:\"col\";s:6:\"header\";s:6:\"enable\";s:1:\"1\";}i:2;a:3:{s:3:\"mod\";s:3:\"384\";s:3:\"col\";s:4:\"left\";s:6:\"enable\";s:1:\"1\";}i:3;a:3:{s:3:\"mod\";s:1:\"0\";s:3:\"col\";s:4:\"left\";s:6:\"enable\";s:1:\"1\";}i:4;a:3:{s:3:\"mod\";s:1:\"0\";s:3:\"col\";s:5:\"right\";s:6:\"enable\";s:1:\"1\";}i:5;a:3:{s:3:\"mod\";s:1:\"0\";s:3:\"col\";s:4:\"main\";s:6:\"enable\";s:1:\"1\";}i:6;a:3:{s:3:\"mod\";s:3:\"392\";s:3:\"col\";s:6:\"footer\";s:6:\"enable\";s:1:\"1\";}i:7;a:3:{s:3:\"mod\";s:3:\"372\";s:3:\"col\";s:6:\"footer\";s:6:\"enable\";s:1:\"1\";}i:8;a:3:{s:3:\"mod\";s:3:\"371\";s:3:\"col\";s:6:\"footer\";s:6:\"enable\";s:1:\"1\";}}', 'fe_page_odd_three_columns', 1, 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', 'width=device-width, initial-scale=1, shrink-to-fit=no', '', 'left-right-col-layout', '', NULL, 1, 'a:2:{i:0;s:11:\"j_accordion\";i:1;s:10:\"j_colorbox\";}', 0, NULL, NULL, NULL, 'a:1:{i:0;s:9:\"js_slider\";}', NULL, 0, '', 'center'); +INSERT INTO `tl_layout` (`id`, `pid`, `tstamp`, `name`, `rows`, `headerHeight`, `footerHeight`, `cols`, `widthLeft`, `widthRight`, `sections`, `framework`, `external`, `combineScripts`, `modules`, `template`, `minifyMarkup`, `lightboxSize`, `defaultImageDensities`, `viewport`, `titleTag`, `cssClass`, `onload`, `head`, `addJQuery`, `jquery`, `addMooTools`, `mootools`, `analytics`, `externalJs`, `scripts`, `script`, `static`, `width`, `align`) VALUES (59, 17, 1664362899, 'Einspaltiges Layout / Gerader Header', '3rw', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '1cl', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '', 'a:1:{i:0;a:4:{s:5:\"title\";s:0:\"\";s:2:\"id\";s:0:\"\";s:8:\"template\";s:13:\"block_section\";s:8:\"position\";s:3:\"top\";}}', '', NULL, 1, 'a:5:{i:0;a:3:{s:3:\"mod\";s:3:\"417\";s:3:\"col\";s:6:\"header\";s:6:\"enable\";s:1:\"1\";}i:1;a:3:{s:3:\"mod\";s:1:\"0\";s:3:\"col\";s:6:\"header\";s:6:\"enable\";s:1:\"1\";}i:2;a:3:{s:3:\"mod\";s:1:\"0\";s:3:\"col\";s:4:\"main\";s:6:\"enable\";s:1:\"1\";}i:3;a:3:{s:3:\"mod\";s:3:\"372\";s:3:\"col\";s:6:\"footer\";s:6:\"enable\";s:1:\"1\";}i:4;a:3:{s:3:\"mod\";s:3:\"371\";s:3:\"col\";s:6:\"footer\";s:6:\"enable\";s:1:\"1\";}}', 'fe_page_odd', 1, 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', 'width=device-width, initial-scale=1, shrink-to-fit=no', '', '', '', NULL, 1, 'a:2:{i:0;s:11:\"j_accordion\";i:1;s:10:\"j_colorbox\";}', 0, NULL, NULL, NULL, 'a:1:{i:0;s:9:\"js_slider\";}', NULL, 0, '', 'center'); + +INSERT INTO `tl_member` (`id`, `tstamp`, `firstname`, `lastname`, `dateOfBirth`, `gender`, `company`, `street`, `postal`, `city`, `state`, `country`, `phone`, `mobile`, `fax`, `email`, `website`, `language`, `groups`, `login`, `username`, `password`, `assignDir`, `homeDir`, `disable`, `start`, `stop`, `dateAdded`, `lastLogin`, `currentLogin`, `loginAttempts`, `locked`, `session`, `secret`, `useTwoFactor`, `backupCodes`, `trustedTokenVersion`) VALUES (1, 1259754224, 'John', 'Smith', '238201200', 'male', '', '', '', '', '', '', '', '', '', 'j.smith@example.com', '', 'en', 'a:1:{i:0;s:1:\"2\";}', 1, 'j.smith', '$2y$10$r//Ke.SkjhB5W8PLFKMmweY5Bv2d4CbSm3f3sH8Q4UMp8QknQPe0y', 0, 0x00000000000000000000000000000000, 0, '', '', 1259754224, 1539337506, 1539337760, 0, 0, 'a:6:{s:7:\"referer\";a:2:{s:4:\"last\";s:17:\"members-area.html\";s:7:\"current\";s:9:\"user.html\";}s:10:\"captcha_20\";a:3:{s:3:\"sum\";i:8;s:3:\"key\";s:33:\"ceb79742be170f00826577727747ba0d7\";s:4:\"time\";i:1497147940;}s:15:\"captcha_captcha\";a:3:{s:3:\"sum\";i:11;s:3:\"key\";s:33:\"c41b679fe2c86aa30c1a01b0a043b46b7\";s:4:\"time\";i:1497147940;}s:21:\"captcha_lost_password\";a:3:{s:3:\"sum\";i:6;s:3:\"key\";s:33:\"cb957ec347e15383df19ccebb224de8a3\";s:4:\"time\";i:1511530383;}s:21:\"rocksolid_antispam_35\";a:3:{s:5:\"names\";a:3:{i:0;s:7:\"email-2\";i:1;s:3:\"url\";i:2;s:22:\"_KpKKb-LEmIaoF9qD0d8xQ\";}s:6:\"values\";a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:22:\"Q3j7jPXokkT4Fn0hjEZyfQ\";}s:4:\"time\";i:1524909956;}s:21:\"rocksolid_antispam_55\";a:3:{s:5:\"names\";a:3:{i:0;s:7:\"email-2\";i:1;s:3:\"url\";i:2;s:22:\"RZXM8B6uhKoCeuUm1LECqg\";}s:6:\"values\";a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:22:\"-eimzbyugMMHvG6f5EOOmQ\";}s:4:\"time\";i:1524910785;}}', NULL, 0, NULL, 0); +INSERT INTO `tl_member` (`id`, `tstamp`, `firstname`, `lastname`, `dateOfBirth`, `gender`, `company`, `street`, `postal`, `city`, `state`, `country`, `phone`, `mobile`, `fax`, `email`, `website`, `language`, `groups`, `login`, `username`, `password`, `assignDir`, `homeDir`, `disable`, `start`, `stop`, `dateAdded`, `lastLogin`, `currentLogin`, `loginAttempts`, `locked`, `session`, `secret`, `useTwoFactor`, `backupCodes`, `trustedTokenVersion`) VALUES (2, 1259754224, 'Donna', 'Evans', '191635200', 'female', '', '', '', '', '', '', '', '', '', 'd.evans@example.com', '', 'en', 'a:1:{i:0;s:1:\"1\";}', 1, 'd.evans', '$2y$10$3.ghpkaeW/ATUeSrhA8sgedbs4AdboKczBPV7IqyweXS6eCQ749pS', 0, 0x00000000000000000000000000000000, 0, '', '', 1259754224, 1516703824, 1553272691, 0, 0, 'a:3:{s:7:\"referer\";a:2:{s:4:\"last\";s:34:\"my-account.html?theme=cto-boostrap\";s:7:\"current\";s:30:\"logout.html?theme=cto-boostrap\";}s:10:\"captcha_20\";a:3:{s:3:\"sum\";i:11;s:3:\"key\";s:33:\"c06b2614e2c5a01d17ce2309ed485b3e3\";s:4:\"time\";i:1390142011;}s:21:\"captcha_lost_password\";a:3:{s:3:\"sum\";i:6;s:3:\"key\";s:33:\"c644f556725e50fe2bca81e7e05a71719\";s:4:\"time\";i:1401260677;}}', NULL, 0, NULL, 0); +INSERT INTO `tl_member` (`id`, `tstamp`, `firstname`, `lastname`, `dateOfBirth`, `gender`, `company`, `street`, `postal`, `city`, `state`, `country`, `phone`, `mobile`, `fax`, `email`, `website`, `language`, `groups`, `login`, `username`, `password`, `assignDir`, `homeDir`, `disable`, `start`, `stop`, `dateAdded`, `lastLogin`, `currentLogin`, `loginAttempts`, `locked`, `session`, `secret`, `useTwoFactor`, `backupCodes`, `trustedTokenVersion`) VALUES (3, 1259754224, 'John', 'Doe', '0', '', '', '', '', '', '', '', '', '', '', 'j.doe@example.com', '', 'en', 'a:2:{i:0;s:1:\"2\";i:1;s:1:\"1\";}', 1, 'j.doe', '7a86a8cf9d7510cc4661b217133f2eed37981b75', 0, 0x00000000000000000000000000000000, 0, '', '', 1259754224, 0, 0, 0, 0, 'a:1:{s:7:\"referer\";a:2:{s:4:\"last\";s:15:\"/history-1.html\";s:7:\"current\";s:1:\"/\";}}', NULL, 0, NULL, 0); + +INSERT INTO `tl_member_group` (`id`, `tstamp`, `name`, `redirect`, `jumpTo`, `disable`, `start`, `stop`) VALUES (1, 1172600419, 'Violin Students', 1, 6, 0, '', ''); +INSERT INTO `tl_member_group` (`id`, `tstamp`, `name`, `redirect`, `jumpTo`, `disable`, `start`, `stop`) VALUES (2, 1172600394, 'Piano Students', 1, 7, 0, '', ''); +INSERT INTO `tl_member_group` (`id`, `tstamp`, `name`, `redirect`, `jumpTo`, `disable`, `start`, `stop`) VALUES (3, 1367401146, 'general Members', 1, 67, 0, '', ''); + +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `unfilteredHtml`) VALUES (371, 17, 1523542648, 'Footer / Copyright', 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', 'html', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, 'a:0:{}', 0, 0, NULL, '
\n
\n {{theme::content::ODD02/05}}\n
\n
', 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, '', NULL, '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `unfilteredHtml`) VALUES (372, 17, 1637747701, 'Footer / Main', 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', 'html', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, 'a:0:{}', 0, 0, NULL, '\n', 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, '', NULL, '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `unfilteredHtml`) VALUES (373, 17, 1538491237, 'Footer / Navigation', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'customnav', 0, 0, 0, 0, 0, 0, 'nav_default', '', 'a:5:{i:0;i:92;i:1;i:118;i:2;i:101;i:3;i:134;i:4;i:139;}', 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, 'a:0:{}', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `unfilteredHtml`) VALUES (375, 17, 1528378451, 'Kontaktformular', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:12:\"Ihre Anfrage\";}', 'form', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 6, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, 'a:0:{}', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `unfilteredHtml`) VALUES (382, 17, 1644931859, 'Navigationsleiste mit Schräge', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'navigation', 0, 0, 0, 0, 0, 0, 'nav_default_odd', 'mod_navigation_odd_sloping', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, 'a:0:{}', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `unfilteredHtml`) VALUES (383, 17, 1538393056, 'Sitemap', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'sitemap', 0, 0, 0, 0, 0, 0, 'nav_makler_sitemap', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, 'a:0:{}', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `unfilteredHtml`) VALUES (384, 17, 1538494168, 'Unternavigation', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'navigation', 1, 3, 0, 0, 0, 0, 'nav_default', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, 'a:0:{}', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:6:\"subnav\";}', NULL, '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `unfilteredHtml`) VALUES (401, 17, 1539334988, 'Module / User / Automatischer Logout', '', 'logout', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `unfilteredHtml`) VALUES (402, 17, 1539334988, 'Module / User / Konto schließen', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:16:\"Konto schließen\";}', 'closeAccount', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, 'close_deactivate', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `unfilteredHtml`) VALUES (403, 17, 1539335128, 'Module / User / Login-Formular', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:14:\"Login-Formular\";}', 'login', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 130, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `unfilteredHtml`) VALUES (404, 17, 1539334988, 'Module / User / Passwort ändern', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:16:\"Passwort ändern\";}', 'changePassword', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `unfilteredHtml`) VALUES (405, 17, 1539334988, 'Module / User / Passwort vergessen', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:18:\"Passwort vergessen\";}', 'lostPassword', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, 'Sie haben ein neues Passwort für ##domain## angefordert.\n\nBitte klicken Sie ##link## um das neue Passwort festzulegen. Wenn Sie diese E-Mail nicht angefordert haben, kontaktieren Sie bitte den Administrator der Webseite.', NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `unfilteredHtml`) VALUES (406, 17, 1644936081, 'Module / User / Personendaten', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Personendaten\";}', 'personalData', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, 'a:20:{i:0;s:9:\"firstname\";i:1;s:8:\"lastname\";i:2;s:11:\"dateOfBirth\";i:3;s:6:\"gender\";i:4;s:7:\"company\";i:5;s:6:\"street\";i:6;s:6:\"postal\";i:7;s:4:\"city\";i:8;s:5:\"state\";i:9;s:7:\"country\";i:10;s:5:\"phone\";i:11;s:6:\"mobile\";i:12;s:3:\"fax\";i:13;s:5:\"email\";i:14;s:7:\"website\";i:15;s:8:\"language\";i:16;s:6:\"groups\";i:17;s:8:\"username\";i:18;s:8:\"password\";i:19;s:10:\"newsletter\";}', 'member_grouped', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `unfilteredHtml`) VALUES (407, 17, 1644936092, 'Module / User / Registrierung', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Registrierung\";}', 'registration', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, 'a:20:{i:0;s:9:\"firstname\";i:1;s:8:\"lastname\";i:2;s:11:\"dateOfBirth\";i:3;s:6:\"gender\";i:4;s:7:\"company\";i:5;s:6:\"street\";i:6;s:6:\"postal\";i:7;s:4:\"city\";i:8;s:5:\"state\";i:9;s:7:\"country\";i:10;s:5:\"phone\";i:11;s:6:\"mobile\";i:12;s:3:\"fax\";i:13;s:5:\"email\";i:14;s:7:\"website\";i:15;s:8:\"language\";i:16;s:6:\"groups\";i:17;s:8:\"username\";i:18;s:8:\"password\";i:19;s:10:\"newsletter\";}', 'member_grouped', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 1, 0, '', 0, 0, NULL, 1, 0, 'Vielen Dank für Ihre Registrierung auf ##domain##.\n\nBitte klicken Sie ##link## um Ihre Registrierung abzuschließen und Ihr Konto zu aktivieren. Wenn Sie keinen Zugang angefordert haben, ignorieren Sie bitte diese E-Mail.', NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `unfilteredHtml`) VALUES (415, 17, 1539347848, 'Module / Suchmaschine', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', 'search', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, 'a:2:{i:0;s:2:\"48\";i:1;s:4:\"1000\";}', 0, 0, 'advanced', 'search_default', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `unfilteredHtml`) VALUES (417, 17, 1644831836, 'Navigationsleiste ohne Schräge', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'navigation', 0, 0, 0, 0, 0, 0, 'nav_default_odd', 'mod_navigation_odd', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, 'a:0:{}', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', NULL, '', '', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `unfilteredHtml`) VALUES (418, 17, 1560846305, 'Modaler Dialog / Text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Überschrift\";}', 'ct_modal', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

', '', 'Modaler Dialog mit Text', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `unfilteredHtml`) VALUES (419, 17, 1560846342, 'Modaler Dialog / Text / vertikal zentriert', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Überschrift\";}', 'ct_modal', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, 'modal-dialog-centered', '', '

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

', '', 'Modaler Dialog mit Text, vertikal zentriert', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `unfilteredHtml`) VALUES (420, 17, 1560846329, 'Modaler Dialog / Text / langer Text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Überschrift\";}', 'ct_modal', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.+Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.+Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

', '', 'Modaler Dialog mit Text, mit Scrolling', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `unfilteredHtml`) VALUES (421, 17, 1560846373, 'Modaler Dialog / Formular', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Überschrift\";}', 'ct_modal', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, 'modal-dialog-centered modal-lg', '', '

{{insert_form::8}}

', '', 'Modaler Dialog mit Formular', NULL); +INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `overviewPage`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_deleteDir`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `data`, `protected`, `groups`, `cssID`, `rootPageDependentModules`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `unfilteredHtml`) VALUES (422, 17, 1560846353, 'Modaler Dialog / Text / vertikal zentriert und breiter', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Überschrift\";}', 'ct_modal', 0, 0, 0, 0, 0, 0, '', '', NULL, 0, '', 0, 0, 0, 0, NULL, '', 0, 'and', 0, '48', 4, 0, 'simple', '', 'main', 0, 0, NULL, '', 0, 0, NULL, NULL, 3600, NULL, 'rss_default', 3, 0, NULL, 0, 0, '', 0, 0, NULL, 0, 0, NULL, NULL, NULL, 0, NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, 'modal-dialog-centered modal-lg', '', '

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

', '', 'Modaler Dialog mit Text, vertikal zentriert und breiter', NULL); + +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (90, 0, 384, 1664371599, 'odd - contao theme', 'root', 'odd', 0, 0, 'odd - contao theme', 'de', '', NULL, 'permanent', 0, 0, '', 0, '', '', '', 1, 0, NULL, NULL, 0, '', 0, '', '', '', 'd.m.Y', 'H:i', 'd.m.Y H:i', '', 1, '', '.html', 1, 0, 0, NULL, 1, 55, 0, 0, 604800, 0, 604800, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 0, '', '', 0, 0, 1, '', '', 0, 0, 0, 0, 'bundles/contaoddadvancedclasses/sets/bootstrap4.json'); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (91, 90, 128, 1540219874, 'Start', 'regular', 'index', 0, 0, 'Odd Theme Demo', '', 'index,follow', 'Auf dieser Seite finden Sie Demo-Inhalte des Odd Themes für das Content-Management-System Contao.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 0, '', 'map_default', 0, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (92, 90, 192, 1645107245, 'Module', 'forward', 'module', 0, 0, '', '', 'index,follow', NULL, 'permanent', 129, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 1, 56, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 0, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (101, 90, 528, 1555059486, 'Elemente', 'forward', 'elemente', 0, 0, '', '', 'index,follow', NULL, 'permanent', 113, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 1, 56, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 0, 'theme-inspector', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (105, 90, 896, 1540219814, 'ODD Elements', 'folder', '', 0, 0, '', '', 'noindex,nofollow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 1, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (106, 105, 128, 1538489256, '01 / Kopfzeile', 'regular', '01-kopfzeile', 0, 0, '', '', 'index,follow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 1, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (107, 105, 256, 1538489266, '02 / Fußzeile', 'regular', '02-fußzeile', 0, 0, '', '', 'index,follow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 1, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (113, 101, 128, 1553272043, 'Textelemente', 'regular', 'inhaltselemente/textelemente', 0, 0, 'Textelemente - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie verschiedene Beispiele wie Textelemente eingebunden werden können.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (114, 101, 256, 1553272043, 'Akkordion', 'regular', 'inhaltselemente/akkordion', 0, 0, 'Akkordion - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel wie ein Akkordion-Element eingebunden werden kann.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (115, 101, 384, 1553272043, 'Content Slider', 'regular', 'inhaltselemente/content-slider', 0, 0, 'Content Slider - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie verschiedene Beispiele wie Content-Slider eingebunden werden können.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 1, 55, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (116, 101, 512, 1553272043, 'Media-Elemente', 'regular', 'inhaltselemente/media-elemente', 0, 0, 'Media-Elemente - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie verschiedene Beispiele wie Media-Elemente, wie z. B. Bildergalerien oder Videos eingebunden werden können.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (118, 90, 352, 1555062182, 'Layouts', 'forward', 'layouts', 0, 0, '', '', 'index,follow', NULL, 'permanent', 161, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 0, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (120, 159, 128, 1555059417, 'Layout mit linker Spalte', 'regular', 'layouts/layout-mit-linker-spalte', 0, 0, 'Layout mit linker Spalte - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel einer Seite mit einer linken Spalte.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 1, 56, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (121, 159, 256, 1555059417, 'Layout mit rechter Spalte', 'regular', 'layouts/layout-mit-rechter-spalte', 0, 0, 'Layout mit rechter Spalte - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel einer Seite mit einer rechten Spalte.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 1, 57, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (122, 118, 96, 1555059495, 'Dreispaltiges Layout', 'regular', 'layouts/dreispaltiges-layout', 0, 0, 'Dreispaltiges Layout', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel einer Seite mit einer linken und rechten Spalte.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 1, 58, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (124, 118, 32, 1555059457, 'Einspaltiges Layout', 'regular', 'layouts/einspaltiges-layout', 0, 0, 'Einspaltiges Layout - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel einer Seite mit nur einer Spalte.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 1, 55, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (127, 101, 576, 1553870717, 'Weitere Theme-Elemente', 'regular', 'theme-elemente', 0, 0, 'Theme-Elemente', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Themes für das Content-Management-System Contao finden Sie verschiedene Beispiele wie weitereTheme Elemente eingebunden werden können.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (128, 101, 544, 1553272043, 'Download-Elemente', 'regular', 'style-guide/download-elemente', 0, 0, 'Download-Elemente - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie verschiedene Beispiele wie Download-Elemente eingebunden werden können.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (129, 92, 384, 1553272043, 'Navigation', 'regular', 'module/navigation', 0, 0, 'Navigation - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie die verschiedenen Navigationstypen eingebunden werden können.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (130, 92, 512, 1553272043, 'User', 'regular', 'module/user', 0, 0, 'User - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie User-Module (z. B. Login- und Registrierung) eingebunden werden können.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (133, 92, 896, 1553272043, 'Formulare', 'regular', 'module/formulare', 0, 0, 'Formulare - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie Formulare eingebunden werden kann.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (134, 90, 704, 1553272043, 'Impressum', 'regular', 'impressum', 0, 0, 'Impressum - Mate Theme', '', 'noindex,nofollow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 1, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (135, 133, 128, 1574341960, 'Formular-Bestätigung', 'regular', 'module/anwendungen/formular-bestaetigung', 0, 0, 'Ihre Anfrage wurde abgesendet', '', 'noindex,nofollow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 1, 55, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 1, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (138, 92, 1024, 1553272043, 'Suche', 'regular', 'module/suche', 0, 0, 'Suche - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie eine Suche eingebunden werden kann.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (139, 90, 800, 1555067757, 'Kontakt', 'regular', 'kontakt', 0, 0, 'Kontakt - Mate Theme', '', 'index,follow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel einer Kontakt-Seite mit Anschrift und Kontaktformular.', 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 1, 57, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 0, 'contact', 'map_default', 0, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (140, 90, 1024, 1664286412, '404 Seite nicht gefunden', 'error_404', '404-seite-nicht-gefunden', 0, 0, '404 Seite nicht gefunden', '', 'index,follow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 0, '', '', 0, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (141, 90, 1152, 1664286412, '403 Zugriff verweigert', 'error_401', '403-zugriff-verweigert', 0, 0, '403 Zugriff verweigert', '', 'index,follow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 0, '', '', 0, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (150, 156, 512, 1555059538, 'ohne Schräge', 'regular', 'layouts/headerbild-layouts/ohne-schräge', 0, 0, '', '', 'noindex,nofollow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (156, 118, 24, 1555062174, 'Headerbild Layouts', 'forward', 'layouts/headerbild-layouts', 0, 0, '', '', 'noindex,nofollow', NULL, 'permanent', 157, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 1, 56, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (157, 156, 256, 1555059314, 'Schräge nach links', 'regular', 'layouts/headerbild-layouts/schräge-nach-links', 0, 0, '', '', 'noindex,nofollow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (158, 156, 384, 1555059305, 'Schräge nach rechts', 'regular', 'layouts/headerbild-layouts/schräge-nach-rechts', 0, 0, '', '', 'noindex,nofollow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 1, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (159, 118, 64, 1555059520, 'Zweispaltiges Layout', 'forward', 'layouts/zweispaltiges-layout', 0, 0, '', '', 'noindex,nofollow', NULL, 'permanent', 120, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 1, 'a:1:{i:0;s:2:\"-1\";}', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 0, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (161, 118, 16, 1575631566, 'Layout mit geradem Header', 'regular', 'layouts/layout-mit-geradem-header', 0, 0, '', '', 'noindex,nofollow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 1, 59, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 0, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (162, 118, 256, 1555061298, 'Elemente mit Schrägen', 'regular', 'layouts/elemente-mit-schrägen', 0, 0, '', '', 'noindex,nofollow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 0, '', 'map_never', 0, 0, 1, '', '', 0, 0, 0, 0, ''); +INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `type`, `alias`, `requireItem`, `routePriority`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `disableLanguageRedirect`, `favicon`, `robotsTxt`, `maintenanceMode`, `mailerTransport`, `enableCanonical`, `canonicalLink`, `canonicalKeepParams`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `validAliasCharacters`, `useFolderUrl`, `urlPrefix`, `urlSuffix`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `subpageLayout`, `includeCache`, `cache`, `alwaysLoadFromCache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `twoFactorJumpTo`, `ac_defaultColumnWidth`, `ac_disableCSS`, `ac_set`) VALUES (164, 92, 1152, 1560781890, 'Modale Dialoge', 'regular', 'module/modale-dialoge', 0, 0, '', '', 'index,follow', NULL, 'permanent', 0, 0, '', 0, '', '', '', 0, 0, NULL, NULL, 0, '', 0, '', '', '', '', '', '', '', 0, '', '.html', 0, 0, 0, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', 0, '', 'map_default', 0, 0, 1, '', '', 0, 0, 0, 0, ''); + +INSERT INTO `tl_theme` (`id`, `tstamp`, `name`, `author`, `folders`, `screenshot`, `templates`, `pdir_th_short_code`, `pdir_th_license_domain`, `pdir_th_description`) VALUES (17, 1566205456, 'Odd Theme', 'pdir digital agentur // pdir GmbH / Juliane Langer, Philipp Seibt, Mathias Arzberger', NULL, NULL, '', 'odd', '', '<b>pdir contao theme licence</b><br>\nMit dieser <b>Lizenz</b> gekennzeichnete Themes dürfen sowohl privat als auch kommerziell eingesetzt werden. Der Copyright-Link bzw. die Copyright-Links \"<i>ODD Theme by montequesto</i>\" dürfen nicht entfernt oder verändert werden. Das gilt auch wenn Sie das Theme\nnur als Basis für eine Website einsetzen und es verändern.\nMöchten Sie diesen Theme ohne Copyright-Link einsetzen, müssen Sie eine kostenpflichtige Lizenz erwerben.'); diff --git a/contao/templates/_new/.twig-root b/contao/templates/_new/.twig-root new file mode 100644 index 0000000..e69de29 diff --git a/contao/templates/_new/component/_figure_reference.html.twig b/contao/templates/_new/component/_figure_reference.html.twig new file mode 100644 index 0000000..e056a90 --- /dev/null +++ b/contao/templates/_new/component/_figure_reference.html.twig @@ -0,0 +1,82 @@ +{# + This component outputs a figure element with media, an optional link tag + around the media part, as well as an optional figcaption. It is designed + to be used together with a \Contao\CoreBundle\Image\Studio\Figure object, + but can be fully adapted for any data input by adjusting the respective + blocks. +
+ + + +
My caption
+
+ See "@Contao/component/_picture.html.twig" for more information about the + default media part. + Mandatory variables: + @var \Contao\CoreBundle\Image\Studio\Figure figure + Optional variables: + @var \Contao\CoreBundle\String\HtmlAttributes figure_attributes + @var \Contao\CoreBundle\String\HtmlAttributes picture_attributes + @var \Contao\CoreBundle\String\HtmlAttributes source_attributes + @var \Contao\CoreBundle\String\HtmlAttributes img_attributes + @var \Contao\CoreBundle\String\HtmlAttributes link_attributes + @var \Contao\CoreBundle\String\HtmlAttributes caption_attributes +#} + +{% use "@Contao/component/_picture.html.twig" %} + +{% block figure_component %} + {% set figure_attributes = attrs() + .mergeWith(figure.options.attr|default) + .mergeWith(figure_attributes|default) + %} + + {% if not figure.linkHref|default %} + {# Media #} + {% block media %} + {{ block('picture_component') }} + {% endblock %} + {% else %} + {# Media wrapped with link #} + {% block media_link %} + {% set link_attributes = attrs(figure.linkAttributes(true)|default) + .setIfExists('title', figure.hasLightbox and figure.hasMetadata ? figure.metadata.title : null) + .mergeWith(figure.options.link_attr|default) + .mergeWith(link_attributes|default) + %} + {{ block('media') }} + {% endblock %} + {% endif %} + + {# Caption #} + {% block caption %} + {% if figure.metadata and figure.metadata.caption %} + {% set caption_attributes = attrs() + .mergeWith(figure.options.caption_attr|default) + .mergeWith(caption_attributes|default) + %} +
+
+
{{ figure.metadata.title }}
+ {% if figure.linkHref|default %} + {% set link_attributes = attrs(figure.linkAttributes(true)|default) + .setIfExists('title', figure.hasLightbox and figure.hasMetadata ? figure.metadata.title : null) + .mergeWith(figure.options.link_attr|default) + .mergeWith(link_attributes|default) + %} + + {% endif %} + + {%- block caption_inner -%} + {{- figure.metadata.caption|raw -}} + {%- endblock -%} + + {% if figure.linkHref|default %} + + {% endif %} +
+
+ {% endif %} + {% endblock %} + +{% endblock %} diff --git a/contao/templates/_new/content_element/gallery/gallery_references.html.twig b/contao/templates/_new/content_element/gallery/gallery_references.html.twig new file mode 100644 index 0000000..f2d9b18 --- /dev/null +++ b/contao/templates/_new/content_element/gallery/gallery_references.html.twig @@ -0,0 +1,13 @@ +{% extends "@Contao/content_element/_base.html.twig" %} +{% use "@Contao/component/_list.html.twig" %} +{% use "@Contao/component/_figure_reference.html.twig" %} + +{% set attributes = attrs(attributes|default).addClass("content-#{type}--cols-#{items_per_row|default(4)} references") %} + +{% block content %} + {% with {items: images} %}{{ block('list_component') }}{% endwith %} +{% endblock %} + +{% block list_item %} + {% with {figure: item} %}{{ block('figure_component') }}{% endwith %} +{% endblock %} diff --git a/contao/templates/_new/content_element/image/header_image_odd.html.twig b/contao/templates/_new/content_element/image/header_image_odd.html.twig new file mode 100644 index 0000000..ebcbbd6 --- /dev/null +++ b/contao/templates/_new/content_element/image/header_image_odd.html.twig @@ -0,0 +1,12 @@ +{% extends "@Contao/content_element/image.html.twig" %} + +{% block wrapper %} + {% set attributes = attrs(attributes|default).addClass(['header-image']) %} + {{ parent() }} +{% endblock %} + +{% block headline_component %} +
+ {{ parent() }} +
+{% endblock %} diff --git a/contao/templates/be/be_oddtheme_setup.html5 b/contao/templates/be/be_oddtheme_setup.html5 new file mode 100644 index 0000000..d0a29d5 --- /dev/null +++ b/contao/templates/be/be_oddtheme_setup.html5 @@ -0,0 +1,26 @@ +
+
+

ODD Theme für Contao (Version version ?>)

+
+
+
+ +

Das ODD Theme für Contao ist ein Produkt der pdir / digital agentur

+

Interessante Links

+ +
+
+
+
+

Willkommen bei ODD Theme für Contao

+

pdir contao theme licence
Mit dieser Lizenz gekennzeichnete Themes dürfen sowohl privat als auch kommerziell eingesetzt werden. Der Copyright-Link bzw. die Copyright-Links "powered by contao-themes.net" dürfen nicht entfernt oder verändert werden. Das gilt auch wenn Sie das Theme nur als Basis für eine Website einsetzen und es verändern. Möchten Sie diesen Theme ohne Copyright-Link einsetzen, müssen Sie eine kostenpflichtige Lizenz erwerben.

+
+
+
+
+
\ No newline at end of file diff --git a/src/Resources/contao/templates/elements/ce_slider_element.html5 b/contao/templates/elements/ce_slider_element.html5 similarity index 100% rename from src/Resources/contao/templates/elements/ce_slider_element.html5 rename to contao/templates/elements/ce_slider_element.html5 diff --git a/src/Resources/contao/templates/forms/form_upload_odd.html5 b/contao/templates/forms/form_upload_odd.html5 similarity index 100% rename from src/Resources/contao/templates/forms/form_upload_odd.html5 rename to contao/templates/forms/form_upload_odd.html5 diff --git a/src/Resources/contao/templates/layout/fe_page_odd.html5 b/contao/templates/layout/fe_page_odd.html5 similarity index 88% rename from src/Resources/contao/templates/layout/fe_page_odd.html5 rename to contao/templates/layout/fe_page_odd.html5 index 8f99d98..4638975 100644 --- a/src/Resources/contao/templates/layout/fe_page_odd.html5 +++ b/contao/templates/layout/fe_page_odd.html5 @@ -38,7 +38,7 @@ head ?> endblock(); ?> - + class): ?> class="class ?>"onload): ?> onload="onload ?>"> @@ -120,9 +120,9 @@ } - - - - + + + + \ No newline at end of file diff --git a/src/Resources/contao/templates/layout/fe_page_odd_left.html5 b/contao/templates/layout/fe_page_odd_left.html5 similarity index 100% rename from src/Resources/contao/templates/layout/fe_page_odd_left.html5 rename to contao/templates/layout/fe_page_odd_left.html5 diff --git a/src/Resources/contao/templates/layout/fe_page_odd_right.html5 b/contao/templates/layout/fe_page_odd_right.html5 similarity index 100% rename from src/Resources/contao/templates/layout/fe_page_odd_right.html5 rename to contao/templates/layout/fe_page_odd_right.html5 diff --git a/src/Resources/contao/templates/layout/fe_page_odd_three_columns.html5 b/contao/templates/layout/fe_page_odd_three_columns.html5 similarity index 100% rename from src/Resources/contao/templates/layout/fe_page_odd_three_columns.html5 rename to contao/templates/layout/fe_page_odd_three_columns.html5 diff --git a/src/Resources/contao/templates/modules/cal_default_odd.html5 b/contao/templates/modules/cal_default_odd.html5 similarity index 100% rename from src/Resources/contao/templates/modules/cal_default_odd.html5 rename to contao/templates/modules/cal_default_odd.html5 diff --git a/src/Resources/contao/templates/modules/event_full_header_odd.html5 b/contao/templates/modules/event_full_header_odd.html5 similarity index 92% rename from src/Resources/contao/templates/modules/event_full_header_odd.html5 rename to contao/templates/modules/event_full_header_odd.html5 index a1af506..0150385 100644 --- a/src/Resources/contao/templates/modules/event_full_header_odd.html5 +++ b/contao/templates/modules/event_full_header_odd.html5 @@ -1,7 +1,7 @@ addImage): ?>
-
+
insert('image', $this->arrData); ?>

title ?>

diff --git a/src/Resources/contao/templates/modules/event_full_odd.html5 b/contao/templates/modules/event_full_odd.html5 similarity index 100% rename from src/Resources/contao/templates/modules/event_full_odd.html5 rename to contao/templates/modules/event_full_odd.html5 diff --git a/src/Resources/contao/templates/modules/event_list_odd.html5 b/contao/templates/modules/event_list_odd.html5 similarity index 88% rename from src/Resources/contao/templates/modules/event_list_odd.html5 rename to contao/templates/modules/event_list_odd.html5 index 36b33d2..85db26d 100644 --- a/src/Resources/contao/templates/modules/event_list_odd.html5 +++ b/contao/templates/modules/event_list_odd.html5 @@ -2,8 +2,8 @@
datetime) ?> -
parseDate("M", $timestamp); ?>
-
parseDate("d", $timestamp); ?>
+
{{format_date::::M}}
+
{{format_date::::d}}
diff --git a/src/Resources/contao/templates/modules/event_teaser_odd.html5 b/contao/templates/modules/event_teaser_odd.html5 similarity index 90% rename from src/Resources/contao/templates/modules/event_teaser_odd.html5 rename to contao/templates/modules/event_teaser_odd.html5 index f8bdf1a..7a54772 100644 --- a/src/Resources/contao/templates/modules/event_teaser_odd.html5 +++ b/contao/templates/modules/event_teaser_odd.html5 @@ -2,8 +2,8 @@
datetime) ?> -
parseDate("M", $timestamp); ?>
-
parseDate("d", $timestamp); ?>
+
{{format_date::::M}}
+
{{format_date::::d}}
diff --git a/src/Resources/contao/templates/modules/makler_details_extended_odd.html5 b/contao/templates/modules/makler_details_extended_odd.html5 similarity index 100% rename from src/Resources/contao/templates/modules/makler_details_extended_odd.html5 rename to contao/templates/modules/makler_details_extended_odd.html5 diff --git a/src/Resources/contao/templates/modules/makler_list_odd.html5 b/contao/templates/modules/makler_list_odd.html5 similarity index 100% rename from src/Resources/contao/templates/modules/makler_list_odd.html5 rename to contao/templates/modules/makler_list_odd.html5 diff --git a/src/Resources/contao/templates/modules/mod_article.html5 b/contao/templates/modules/mod_article.html5 similarity index 100% rename from src/Resources/contao/templates/modules/mod_article.html5 rename to contao/templates/modules/mod_article.html5 diff --git a/src/Resources/contao/templates/modules/mod_article_fullwidth.html5 b/contao/templates/modules/mod_article_fullwidth.html5 similarity index 100% rename from src/Resources/contao/templates/modules/mod_article_fullwidth.html5 rename to contao/templates/modules/mod_article_fullwidth.html5 diff --git a/src/Resources/contao/templates/modules/mod_cthemes_modal.html5 b/contao/templates/modules/mod_cthemes_modal.html5 similarity index 100% rename from src/Resources/contao/templates/modules/mod_cthemes_modal.html5 rename to contao/templates/modules/mod_cthemes_modal.html5 diff --git a/src/Resources/contao/templates/modules/mod_faqpage_odd.html5 b/contao/templates/modules/mod_faqpage_odd.html5 similarity index 93% rename from src/Resources/contao/templates/modules/mod_faqpage_odd.html5 rename to contao/templates/modules/mod_faqpage_odd.html5 index d9c0864..809d9c6 100644 --- a/src/Resources/contao/templates/modules/mod_faqpage_odd.html5 +++ b/contao/templates/modules/mod_faqpage_odd.html5 @@ -3,11 +3,11 @@ block('content'); ?> faq as $category): ?> -
+

-
+

question ?>

@@ -48,3 +48,7 @@ endblock(); ?> + +addSchemaOrg($this->getSchemaOrgData()); diff --git a/src/Resources/contao/templates/modules/mod_navigation_odd.html5 b/contao/templates/modules/mod_navigation_odd.html5 similarity index 100% rename from src/Resources/contao/templates/modules/mod_navigation_odd.html5 rename to contao/templates/modules/mod_navigation_odd.html5 diff --git a/src/Resources/contao/templates/modules/mod_navigation_odd_sloping.html5 b/contao/templates/modules/mod_navigation_odd_sloping.html5 similarity index 100% rename from src/Resources/contao/templates/modules/mod_navigation_odd_sloping.html5 rename to contao/templates/modules/mod_navigation_odd_sloping.html5 diff --git a/src/Resources/contao/templates/modules/mod_navigation_odd_sloping_topright.html5 b/contao/templates/modules/mod_navigation_odd_sloping_topright.html5 similarity index 100% rename from src/Resources/contao/templates/modules/mod_navigation_odd_sloping_topright.html5 rename to contao/templates/modules/mod_navigation_odd_sloping_topright.html5 diff --git a/src/Resources/contao/templates/modules/mod_newsreader_odd_header.html5 b/contao/templates/modules/mod_newsreader_odd_header.html5 similarity index 100% rename from src/Resources/contao/templates/modules/mod_newsreader_odd_header.html5 rename to contao/templates/modules/mod_newsreader_odd_header.html5 diff --git a/contao/templates/modules/nav_default_odd.html5 b/contao/templates/modules/nav_default_odd.html5 new file mode 100644 index 0000000..84684e7 --- /dev/null +++ b/contao/templates/modules/nav_default_odd.html5 @@ -0,0 +1,24 @@ +
    "> + items as $item): ?> + + + +
  • + itemprop="url"> + + + +
    >
    + + +
  • + + +
diff --git a/src/Resources/contao/templates/modules/navbar_brand_odd.html5 b/contao/templates/modules/navbar_brand_odd.html5 similarity index 100% rename from src/Resources/contao/templates/modules/navbar_brand_odd.html5 rename to contao/templates/modules/navbar_brand_odd.html5 diff --git a/src/Resources/contao/templates/modules/news_full_header_odd.html5 b/contao/templates/modules/news_full_header_odd.html5 similarity index 92% rename from src/Resources/contao/templates/modules/news_full_header_odd.html5 rename to contao/templates/modules/news_full_header_odd.html5 index f0341b7..32ed192 100644 --- a/src/Resources/contao/templates/modules/news_full_header_odd.html5 +++ b/contao/templates/modules/news_full_header_odd.html5 @@ -1,7 +1,7 @@ addImage): ?>
-
+
insert('image', $this->arrData); ?>

newsHeadline ?>

diff --git a/src/Resources/contao/templates/modules/news_full_odd.html5 b/contao/templates/modules/news_full_odd.html5 similarity index 100% rename from src/Resources/contao/templates/modules/news_full_odd.html5 rename to contao/templates/modules/news_full_odd.html5 diff --git a/src/Resources/contao/templates/modules/news_latest_odd.html5 b/contao/templates/modules/news_latest_odd.html5 similarity index 100% rename from src/Resources/contao/templates/modules/news_latest_odd.html5 rename to contao/templates/modules/news_latest_odd.html5 diff --git a/src/Resources/contao/templates/modules/news_short_odd.html5 b/contao/templates/modules/news_short_odd.html5 similarity index 100% rename from src/Resources/contao/templates/modules/news_short_odd.html5 rename to contao/templates/modules/news_short_odd.html5 diff --git a/src/Resources/contao/templates/modules/nl_default_footer_odd.html5 b/contao/templates/modules/nl_default_footer_odd.html5 similarity index 100% rename from src/Resources/contao/templates/modules/nl_default_footer_odd.html5 rename to contao/templates/modules/nl_default_footer_odd.html5 diff --git a/src/Resources/contao/templates/modules/nl_default_odd.html5 b/contao/templates/modules/nl_default_odd.html5 similarity index 100% rename from src/Resources/contao/templates/modules/nl_default_odd.html5 rename to contao/templates/modules/nl_default_odd.html5 diff --git a/src/Resources/contao/templates/news/news_social_feed_extended_odd.html5 b/contao/templates/news/news_social_feed_extended_odd.html5 similarity index 100% rename from src/Resources/contao/templates/news/news_social_feed_extended_odd.html5 rename to contao/templates/news/news_social_feed_extended_odd.html5 diff --git a/src/Resources/contao/templates/news/news_social_feed_odd.html5 b/contao/templates/news/news_social_feed_odd.html5 similarity index 100% rename from src/Resources/contao/templates/news/news_social_feed_odd.html5 rename to contao/templates/news/news_social_feed_odd.html5 diff --git a/ecs.php b/ecs.php new file mode 100644 index 0000000..46badd8 --- /dev/null +++ b/ecs.php @@ -0,0 +1,38 @@ + + +@package theme odd bundle +@link https://github.com/contao-themes-net/odd-theme-bundle +@license pdir contao theme licence +@author pdir GmbH + +For the full copyright and license information, please view the LICENSE +file that was distributed with this source code. +EOF; + +return static function (ContainerConfigurator $containerConfigurator): void { + $containerConfigurator->import(__DIR__.'/vendor/contao/easy-coding-standard/config/set/contao.php'); + + $parameters = $containerConfigurator->parameters(); + $parameters->set(Option::LINE_ENDING, "\n"); + + $services = $containerConfigurator->services(); + $services + ->set(HeaderCommentFixer::class) + ->call('configure', [[ + 'header' => $GLOBALS['ecsHeader'], + ]]) + ; +}; diff --git a/src/Resources/public/bootstrap/dist/css/bootstrap.min.css b/public/bootstrap/dist/css/bootstrap.min.css similarity index 100% rename from src/Resources/public/bootstrap/dist/css/bootstrap.min.css rename to public/bootstrap/dist/css/bootstrap.min.css diff --git a/src/Resources/public/bootstrap/dist/js/bootstrap.min.js b/public/bootstrap/dist/js/bootstrap.min.js similarity index 100% rename from src/Resources/public/bootstrap/dist/js/bootstrap.min.js rename to public/bootstrap/dist/js/bootstrap.min.js diff --git a/src/Resources/public/bootstrap/js/dist/alert.js b/public/bootstrap/js/dist/alert.js similarity index 100% rename from src/Resources/public/bootstrap/js/dist/alert.js rename to public/bootstrap/js/dist/alert.js diff --git a/src/Resources/public/bootstrap/js/dist/alert.js.map b/public/bootstrap/js/dist/alert.js.map similarity index 100% rename from src/Resources/public/bootstrap/js/dist/alert.js.map rename to public/bootstrap/js/dist/alert.js.map diff --git a/src/Resources/public/bootstrap/js/dist/button.js b/public/bootstrap/js/dist/button.js similarity index 100% rename from src/Resources/public/bootstrap/js/dist/button.js rename to public/bootstrap/js/dist/button.js diff --git a/src/Resources/public/bootstrap/js/dist/button.js.map b/public/bootstrap/js/dist/button.js.map similarity index 100% rename from src/Resources/public/bootstrap/js/dist/button.js.map rename to public/bootstrap/js/dist/button.js.map diff --git a/src/Resources/public/bootstrap/js/dist/carousel.js b/public/bootstrap/js/dist/carousel.js similarity index 100% rename from src/Resources/public/bootstrap/js/dist/carousel.js rename to public/bootstrap/js/dist/carousel.js diff --git a/src/Resources/public/bootstrap/js/dist/carousel.js.map b/public/bootstrap/js/dist/carousel.js.map similarity index 100% rename from src/Resources/public/bootstrap/js/dist/carousel.js.map rename to public/bootstrap/js/dist/carousel.js.map diff --git a/src/Resources/public/bootstrap/js/dist/collapse.js b/public/bootstrap/js/dist/collapse.js similarity index 100% rename from src/Resources/public/bootstrap/js/dist/collapse.js rename to public/bootstrap/js/dist/collapse.js diff --git a/src/Resources/public/bootstrap/js/dist/collapse.js.map b/public/bootstrap/js/dist/collapse.js.map similarity index 100% rename from src/Resources/public/bootstrap/js/dist/collapse.js.map rename to public/bootstrap/js/dist/collapse.js.map diff --git a/src/Resources/public/bootstrap/js/dist/dropdown.js b/public/bootstrap/js/dist/dropdown.js similarity index 100% rename from src/Resources/public/bootstrap/js/dist/dropdown.js rename to public/bootstrap/js/dist/dropdown.js diff --git a/src/Resources/public/bootstrap/js/dist/dropdown.js.map b/public/bootstrap/js/dist/dropdown.js.map similarity index 100% rename from src/Resources/public/bootstrap/js/dist/dropdown.js.map rename to public/bootstrap/js/dist/dropdown.js.map diff --git a/src/Resources/public/bootstrap/js/dist/index.js b/public/bootstrap/js/dist/index.js similarity index 100% rename from src/Resources/public/bootstrap/js/dist/index.js rename to public/bootstrap/js/dist/index.js diff --git a/src/Resources/public/bootstrap/js/dist/index.js.map b/public/bootstrap/js/dist/index.js.map similarity index 100% rename from src/Resources/public/bootstrap/js/dist/index.js.map rename to public/bootstrap/js/dist/index.js.map diff --git a/src/Resources/public/bootstrap/js/dist/modal.js b/public/bootstrap/js/dist/modal.js similarity index 100% rename from src/Resources/public/bootstrap/js/dist/modal.js rename to public/bootstrap/js/dist/modal.js diff --git a/src/Resources/public/bootstrap/js/dist/modal.js.map b/public/bootstrap/js/dist/modal.js.map similarity index 100% rename from src/Resources/public/bootstrap/js/dist/modal.js.map rename to public/bootstrap/js/dist/modal.js.map diff --git a/src/Resources/public/bootstrap/js/dist/popover.js b/public/bootstrap/js/dist/popover.js similarity index 100% rename from src/Resources/public/bootstrap/js/dist/popover.js rename to public/bootstrap/js/dist/popover.js diff --git a/src/Resources/public/bootstrap/js/dist/popover.js.map b/public/bootstrap/js/dist/popover.js.map similarity index 100% rename from src/Resources/public/bootstrap/js/dist/popover.js.map rename to public/bootstrap/js/dist/popover.js.map diff --git a/src/Resources/public/bootstrap/js/dist/scrollspy.js b/public/bootstrap/js/dist/scrollspy.js similarity index 100% rename from src/Resources/public/bootstrap/js/dist/scrollspy.js rename to public/bootstrap/js/dist/scrollspy.js diff --git a/src/Resources/public/bootstrap/js/dist/scrollspy.js.map b/public/bootstrap/js/dist/scrollspy.js.map similarity index 100% rename from src/Resources/public/bootstrap/js/dist/scrollspy.js.map rename to public/bootstrap/js/dist/scrollspy.js.map diff --git a/src/Resources/public/bootstrap/js/dist/tab.js b/public/bootstrap/js/dist/tab.js similarity index 100% rename from src/Resources/public/bootstrap/js/dist/tab.js rename to public/bootstrap/js/dist/tab.js diff --git a/src/Resources/public/bootstrap/js/dist/tab.js.map b/public/bootstrap/js/dist/tab.js.map similarity index 100% rename from src/Resources/public/bootstrap/js/dist/tab.js.map rename to public/bootstrap/js/dist/tab.js.map diff --git a/src/Resources/public/bootstrap/js/dist/tooltip.js b/public/bootstrap/js/dist/tooltip.js similarity index 100% rename from src/Resources/public/bootstrap/js/dist/tooltip.js rename to public/bootstrap/js/dist/tooltip.js diff --git a/src/Resources/public/bootstrap/js/dist/tooltip.js.map b/public/bootstrap/js/dist/tooltip.js.map similarity index 100% rename from src/Resources/public/bootstrap/js/dist/tooltip.js.map rename to public/bootstrap/js/dist/tooltip.js.map diff --git a/src/Resources/public/bootstrap/js/dist/util.js b/public/bootstrap/js/dist/util.js similarity index 100% rename from src/Resources/public/bootstrap/js/dist/util.js rename to public/bootstrap/js/dist/util.js diff --git a/src/Resources/public/bootstrap/js/dist/util.js.map b/public/bootstrap/js/dist/util.js.map similarity index 100% rename from src/Resources/public/bootstrap/js/dist/util.js.map rename to public/bootstrap/js/dist/util.js.map diff --git a/src/Resources/public/bootstrap/js/src/alert.js b/public/bootstrap/js/src/alert.js similarity index 100% rename from src/Resources/public/bootstrap/js/src/alert.js rename to public/bootstrap/js/src/alert.js diff --git a/src/Resources/public/bootstrap/js/src/button.js b/public/bootstrap/js/src/button.js similarity index 100% rename from src/Resources/public/bootstrap/js/src/button.js rename to public/bootstrap/js/src/button.js diff --git a/src/Resources/public/bootstrap/js/src/carousel.js b/public/bootstrap/js/src/carousel.js similarity index 100% rename from src/Resources/public/bootstrap/js/src/carousel.js rename to public/bootstrap/js/src/carousel.js diff --git a/src/Resources/public/bootstrap/js/src/collapse.js b/public/bootstrap/js/src/collapse.js similarity index 100% rename from src/Resources/public/bootstrap/js/src/collapse.js rename to public/bootstrap/js/src/collapse.js diff --git a/src/Resources/public/bootstrap/js/src/dropdown.js b/public/bootstrap/js/src/dropdown.js similarity index 100% rename from src/Resources/public/bootstrap/js/src/dropdown.js rename to public/bootstrap/js/src/dropdown.js diff --git a/src/Resources/public/bootstrap/js/src/index.js b/public/bootstrap/js/src/index.js similarity index 100% rename from src/Resources/public/bootstrap/js/src/index.js rename to public/bootstrap/js/src/index.js diff --git a/src/Resources/public/bootstrap/js/src/modal.js b/public/bootstrap/js/src/modal.js similarity index 100% rename from src/Resources/public/bootstrap/js/src/modal.js rename to public/bootstrap/js/src/modal.js diff --git a/src/Resources/public/bootstrap/js/src/popover.js b/public/bootstrap/js/src/popover.js similarity index 100% rename from src/Resources/public/bootstrap/js/src/popover.js rename to public/bootstrap/js/src/popover.js diff --git a/src/Resources/public/bootstrap/js/src/scrollspy.js b/public/bootstrap/js/src/scrollspy.js similarity index 100% rename from src/Resources/public/bootstrap/js/src/scrollspy.js rename to public/bootstrap/js/src/scrollspy.js diff --git a/src/Resources/public/bootstrap/js/src/tab.js b/public/bootstrap/js/src/tab.js similarity index 100% rename from src/Resources/public/bootstrap/js/src/tab.js rename to public/bootstrap/js/src/tab.js diff --git a/src/Resources/public/bootstrap/js/src/tooltip.js b/public/bootstrap/js/src/tooltip.js similarity index 100% rename from src/Resources/public/bootstrap/js/src/tooltip.js rename to public/bootstrap/js/src/tooltip.js diff --git a/src/Resources/public/bootstrap/js/src/util.js b/public/bootstrap/js/src/util.js similarity index 100% rename from src/Resources/public/bootstrap/js/src/util.js rename to public/bootstrap/js/src/util.js diff --git a/src/Resources/public/bootstrap/js/tests/README.md b/public/bootstrap/js/tests/README.md similarity index 100% rename from src/Resources/public/bootstrap/js/tests/README.md rename to public/bootstrap/js/tests/README.md diff --git a/src/Resources/public/bootstrap/js/tests/index.html b/public/bootstrap/js/tests/index.html similarity index 100% rename from src/Resources/public/bootstrap/js/tests/index.html rename to public/bootstrap/js/tests/index.html diff --git a/src/Resources/public/bootstrap/js/tests/karma.conf.js b/public/bootstrap/js/tests/karma.conf.js similarity index 100% rename from src/Resources/public/bootstrap/js/tests/karma.conf.js rename to public/bootstrap/js/tests/karma.conf.js diff --git a/src/Resources/public/bootstrap/js/tests/unit/.eslintrc.json b/public/bootstrap/js/tests/unit/.eslintrc.json similarity index 100% rename from src/Resources/public/bootstrap/js/tests/unit/.eslintrc.json rename to public/bootstrap/js/tests/unit/.eslintrc.json diff --git a/src/Resources/public/bootstrap/js/tests/unit/alert.js b/public/bootstrap/js/tests/unit/alert.js similarity index 100% rename from src/Resources/public/bootstrap/js/tests/unit/alert.js rename to public/bootstrap/js/tests/unit/alert.js diff --git a/src/Resources/public/bootstrap/js/tests/unit/button.js b/public/bootstrap/js/tests/unit/button.js similarity index 100% rename from src/Resources/public/bootstrap/js/tests/unit/button.js rename to public/bootstrap/js/tests/unit/button.js diff --git a/src/Resources/public/bootstrap/js/tests/unit/carousel.js b/public/bootstrap/js/tests/unit/carousel.js similarity index 100% rename from src/Resources/public/bootstrap/js/tests/unit/carousel.js rename to public/bootstrap/js/tests/unit/carousel.js diff --git a/src/Resources/public/bootstrap/js/tests/unit/collapse.js b/public/bootstrap/js/tests/unit/collapse.js similarity index 100% rename from src/Resources/public/bootstrap/js/tests/unit/collapse.js rename to public/bootstrap/js/tests/unit/collapse.js diff --git a/src/Resources/public/bootstrap/js/tests/unit/dropdown.js b/public/bootstrap/js/tests/unit/dropdown.js similarity index 100% rename from src/Resources/public/bootstrap/js/tests/unit/dropdown.js rename to public/bootstrap/js/tests/unit/dropdown.js diff --git a/src/Resources/public/bootstrap/js/tests/unit/modal.js b/public/bootstrap/js/tests/unit/modal.js similarity index 100% rename from src/Resources/public/bootstrap/js/tests/unit/modal.js rename to public/bootstrap/js/tests/unit/modal.js diff --git a/src/Resources/public/bootstrap/js/tests/unit/popover.js b/public/bootstrap/js/tests/unit/popover.js similarity index 100% rename from src/Resources/public/bootstrap/js/tests/unit/popover.js rename to public/bootstrap/js/tests/unit/popover.js diff --git a/src/Resources/public/bootstrap/js/tests/unit/scrollspy.js b/public/bootstrap/js/tests/unit/scrollspy.js similarity index 100% rename from src/Resources/public/bootstrap/js/tests/unit/scrollspy.js rename to public/bootstrap/js/tests/unit/scrollspy.js diff --git a/src/Resources/public/bootstrap/js/tests/unit/tab.js b/public/bootstrap/js/tests/unit/tab.js similarity index 100% rename from src/Resources/public/bootstrap/js/tests/unit/tab.js rename to public/bootstrap/js/tests/unit/tab.js diff --git a/src/Resources/public/bootstrap/js/tests/unit/tooltip.js b/public/bootstrap/js/tests/unit/tooltip.js similarity index 100% rename from src/Resources/public/bootstrap/js/tests/unit/tooltip.js rename to public/bootstrap/js/tests/unit/tooltip.js diff --git a/src/Resources/public/bootstrap/js/tests/unit/util.js b/public/bootstrap/js/tests/unit/util.js similarity index 100% rename from src/Resources/public/bootstrap/js/tests/unit/util.js rename to public/bootstrap/js/tests/unit/util.js diff --git a/src/Resources/public/bootstrap/js/tests/vendor/jquery-1.9.1.min.js b/public/bootstrap/js/tests/vendor/jquery-1.9.1.min.js similarity index 100% rename from src/Resources/public/bootstrap/js/tests/vendor/jquery-1.9.1.min.js rename to public/bootstrap/js/tests/vendor/jquery-1.9.1.min.js diff --git a/src/Resources/public/bootstrap/js/tests/vendor/qunit.css b/public/bootstrap/js/tests/vendor/qunit.css similarity index 100% rename from src/Resources/public/bootstrap/js/tests/vendor/qunit.css rename to public/bootstrap/js/tests/vendor/qunit.css diff --git a/src/Resources/public/bootstrap/js/tests/vendor/qunit.js b/public/bootstrap/js/tests/vendor/qunit.js similarity index 100% rename from src/Resources/public/bootstrap/js/tests/vendor/qunit.js rename to public/bootstrap/js/tests/vendor/qunit.js diff --git a/src/Resources/public/bootstrap/js/tests/visual/alert.html b/public/bootstrap/js/tests/visual/alert.html similarity index 100% rename from src/Resources/public/bootstrap/js/tests/visual/alert.html rename to public/bootstrap/js/tests/visual/alert.html diff --git a/src/Resources/public/bootstrap/js/tests/visual/button.html b/public/bootstrap/js/tests/visual/button.html similarity index 100% rename from src/Resources/public/bootstrap/js/tests/visual/button.html rename to public/bootstrap/js/tests/visual/button.html diff --git a/src/Resources/public/bootstrap/js/tests/visual/carousel.html b/public/bootstrap/js/tests/visual/carousel.html similarity index 100% rename from src/Resources/public/bootstrap/js/tests/visual/carousel.html rename to public/bootstrap/js/tests/visual/carousel.html diff --git a/src/Resources/public/bootstrap/js/tests/visual/collapse.html b/public/bootstrap/js/tests/visual/collapse.html similarity index 100% rename from src/Resources/public/bootstrap/js/tests/visual/collapse.html rename to public/bootstrap/js/tests/visual/collapse.html diff --git a/src/Resources/public/bootstrap/js/tests/visual/dropdown.html b/public/bootstrap/js/tests/visual/dropdown.html similarity index 100% rename from src/Resources/public/bootstrap/js/tests/visual/dropdown.html rename to public/bootstrap/js/tests/visual/dropdown.html diff --git a/src/Resources/public/bootstrap/js/tests/visual/modal.html b/public/bootstrap/js/tests/visual/modal.html similarity index 100% rename from src/Resources/public/bootstrap/js/tests/visual/modal.html rename to public/bootstrap/js/tests/visual/modal.html diff --git a/src/Resources/public/bootstrap/js/tests/visual/popover.html b/public/bootstrap/js/tests/visual/popover.html similarity index 100% rename from src/Resources/public/bootstrap/js/tests/visual/popover.html rename to public/bootstrap/js/tests/visual/popover.html diff --git a/src/Resources/public/bootstrap/js/tests/visual/scrollspy.html b/public/bootstrap/js/tests/visual/scrollspy.html similarity index 100% rename from src/Resources/public/bootstrap/js/tests/visual/scrollspy.html rename to public/bootstrap/js/tests/visual/scrollspy.html diff --git a/src/Resources/public/bootstrap/js/tests/visual/tab.html b/public/bootstrap/js/tests/visual/tab.html similarity index 100% rename from src/Resources/public/bootstrap/js/tests/visual/tab.html rename to public/bootstrap/js/tests/visual/tab.html diff --git a/src/Resources/public/bootstrap/js/tests/visual/tooltip.html b/public/bootstrap/js/tests/visual/tooltip.html similarity index 100% rename from src/Resources/public/bootstrap/js/tests/visual/tooltip.html rename to public/bootstrap/js/tests/visual/tooltip.html diff --git a/src/Resources/public/bootstrap/scss/_alert.scss b/public/bootstrap/scss/_alert.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_alert.scss rename to public/bootstrap/scss/_alert.scss diff --git a/src/Resources/public/bootstrap/scss/_badge.scss b/public/bootstrap/scss/_badge.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_badge.scss rename to public/bootstrap/scss/_badge.scss diff --git a/src/Resources/public/bootstrap/scss/_breadcrumb.scss b/public/bootstrap/scss/_breadcrumb.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_breadcrumb.scss rename to public/bootstrap/scss/_breadcrumb.scss diff --git a/src/Resources/public/bootstrap/scss/_button-group.scss b/public/bootstrap/scss/_button-group.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_button-group.scss rename to public/bootstrap/scss/_button-group.scss diff --git a/src/Resources/public/bootstrap/scss/_buttons.scss b/public/bootstrap/scss/_buttons.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_buttons.scss rename to public/bootstrap/scss/_buttons.scss diff --git a/src/Resources/public/bootstrap/scss/_card.scss b/public/bootstrap/scss/_card.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_card.scss rename to public/bootstrap/scss/_card.scss diff --git a/src/Resources/public/bootstrap/scss/_carousel.scss b/public/bootstrap/scss/_carousel.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_carousel.scss rename to public/bootstrap/scss/_carousel.scss diff --git a/src/Resources/public/bootstrap/scss/_close.scss b/public/bootstrap/scss/_close.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_close.scss rename to public/bootstrap/scss/_close.scss diff --git a/src/Resources/public/bootstrap/scss/_code.scss b/public/bootstrap/scss/_code.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_code.scss rename to public/bootstrap/scss/_code.scss diff --git a/src/Resources/public/bootstrap/scss/_custom-forms.scss b/public/bootstrap/scss/_custom-forms.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_custom-forms.scss rename to public/bootstrap/scss/_custom-forms.scss diff --git a/src/Resources/public/bootstrap/scss/_dropdown.scss b/public/bootstrap/scss/_dropdown.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_dropdown.scss rename to public/bootstrap/scss/_dropdown.scss diff --git a/src/Resources/public/bootstrap/scss/_forms.scss b/public/bootstrap/scss/_forms.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_forms.scss rename to public/bootstrap/scss/_forms.scss diff --git a/src/Resources/public/bootstrap/scss/_functions.scss b/public/bootstrap/scss/_functions.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_functions.scss rename to public/bootstrap/scss/_functions.scss diff --git a/src/Resources/public/bootstrap/scss/_grid.scss b/public/bootstrap/scss/_grid.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_grid.scss rename to public/bootstrap/scss/_grid.scss diff --git a/src/Resources/public/bootstrap/scss/_images.scss b/public/bootstrap/scss/_images.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_images.scss rename to public/bootstrap/scss/_images.scss diff --git a/src/Resources/public/bootstrap/scss/_input-group.scss b/public/bootstrap/scss/_input-group.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_input-group.scss rename to public/bootstrap/scss/_input-group.scss diff --git a/src/Resources/public/bootstrap/scss/_jumbotron.scss b/public/bootstrap/scss/_jumbotron.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_jumbotron.scss rename to public/bootstrap/scss/_jumbotron.scss diff --git a/src/Resources/public/bootstrap/scss/_list-group.scss b/public/bootstrap/scss/_list-group.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_list-group.scss rename to public/bootstrap/scss/_list-group.scss diff --git a/src/Resources/public/bootstrap/scss/_media.scss b/public/bootstrap/scss/_media.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_media.scss rename to public/bootstrap/scss/_media.scss diff --git a/src/Resources/public/bootstrap/scss/_mixins.scss b/public/bootstrap/scss/_mixins.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_mixins.scss rename to public/bootstrap/scss/_mixins.scss diff --git a/src/Resources/public/bootstrap/scss/_modal.scss b/public/bootstrap/scss/_modal.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_modal.scss rename to public/bootstrap/scss/_modal.scss diff --git a/src/Resources/public/bootstrap/scss/_nav.scss b/public/bootstrap/scss/_nav.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_nav.scss rename to public/bootstrap/scss/_nav.scss diff --git a/src/Resources/public/bootstrap/scss/_navbar.scss b/public/bootstrap/scss/_navbar.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_navbar.scss rename to public/bootstrap/scss/_navbar.scss diff --git a/src/Resources/public/bootstrap/scss/_pagination.scss b/public/bootstrap/scss/_pagination.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_pagination.scss rename to public/bootstrap/scss/_pagination.scss diff --git a/src/Resources/public/bootstrap/scss/_popover.scss b/public/bootstrap/scss/_popover.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_popover.scss rename to public/bootstrap/scss/_popover.scss diff --git a/src/Resources/public/bootstrap/scss/_print.scss b/public/bootstrap/scss/_print.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_print.scss rename to public/bootstrap/scss/_print.scss diff --git a/src/Resources/public/bootstrap/scss/_progress.scss b/public/bootstrap/scss/_progress.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_progress.scss rename to public/bootstrap/scss/_progress.scss diff --git a/src/Resources/public/bootstrap/scss/_reboot.scss b/public/bootstrap/scss/_reboot.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_reboot.scss rename to public/bootstrap/scss/_reboot.scss diff --git a/src/Resources/public/bootstrap/scss/_root.scss b/public/bootstrap/scss/_root.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_root.scss rename to public/bootstrap/scss/_root.scss diff --git a/src/Resources/public/bootstrap/scss/_tables.scss b/public/bootstrap/scss/_tables.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_tables.scss rename to public/bootstrap/scss/_tables.scss diff --git a/src/Resources/public/bootstrap/scss/_tooltip.scss b/public/bootstrap/scss/_tooltip.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_tooltip.scss rename to public/bootstrap/scss/_tooltip.scss diff --git a/src/Resources/public/bootstrap/scss/_transitions.scss b/public/bootstrap/scss/_transitions.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_transitions.scss rename to public/bootstrap/scss/_transitions.scss diff --git a/src/Resources/public/bootstrap/scss/_type.scss b/public/bootstrap/scss/_type.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_type.scss rename to public/bootstrap/scss/_type.scss diff --git a/src/Resources/public/bootstrap/scss/_utilities.scss b/public/bootstrap/scss/_utilities.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_utilities.scss rename to public/bootstrap/scss/_utilities.scss diff --git a/src/Resources/public/bootstrap/scss/_variables.scss b/public/bootstrap/scss/_variables.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/_variables.scss rename to public/bootstrap/scss/_variables.scss diff --git a/src/Resources/public/bootstrap/scss/bootstrap-grid.scss b/public/bootstrap/scss/bootstrap-grid.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/bootstrap-grid.scss rename to public/bootstrap/scss/bootstrap-grid.scss diff --git a/src/Resources/public/bootstrap/scss/bootstrap-reboot.scss b/public/bootstrap/scss/bootstrap-reboot.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/bootstrap-reboot.scss rename to public/bootstrap/scss/bootstrap-reboot.scss diff --git a/src/Resources/public/bootstrap/scss/bootstrap.scss b/public/bootstrap/scss/bootstrap.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/bootstrap.scss rename to public/bootstrap/scss/bootstrap.scss diff --git a/src/Resources/public/bootstrap/scss/mixins/_alert.scss b/public/bootstrap/scss/mixins/_alert.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/mixins/_alert.scss rename to public/bootstrap/scss/mixins/_alert.scss diff --git a/src/Resources/public/bootstrap/scss/mixins/_background-variant.scss b/public/bootstrap/scss/mixins/_background-variant.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/mixins/_background-variant.scss rename to public/bootstrap/scss/mixins/_background-variant.scss diff --git a/src/Resources/public/bootstrap/scss/mixins/_badge.scss b/public/bootstrap/scss/mixins/_badge.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/mixins/_badge.scss rename to public/bootstrap/scss/mixins/_badge.scss diff --git a/src/Resources/public/bootstrap/scss/mixins/_border-radius.scss b/public/bootstrap/scss/mixins/_border-radius.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/mixins/_border-radius.scss rename to public/bootstrap/scss/mixins/_border-radius.scss diff --git a/src/Resources/public/bootstrap/scss/mixins/_box-shadow.scss b/public/bootstrap/scss/mixins/_box-shadow.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/mixins/_box-shadow.scss rename to public/bootstrap/scss/mixins/_box-shadow.scss diff --git a/src/Resources/public/bootstrap/scss/mixins/_breakpoints.scss b/public/bootstrap/scss/mixins/_breakpoints.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/mixins/_breakpoints.scss rename to public/bootstrap/scss/mixins/_breakpoints.scss diff --git a/src/Resources/public/bootstrap/scss/mixins/_buttons.scss b/public/bootstrap/scss/mixins/_buttons.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/mixins/_buttons.scss rename to public/bootstrap/scss/mixins/_buttons.scss diff --git a/src/Resources/public/bootstrap/scss/mixins/_caret.scss b/public/bootstrap/scss/mixins/_caret.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/mixins/_caret.scss rename to public/bootstrap/scss/mixins/_caret.scss diff --git a/src/Resources/public/bootstrap/scss/mixins/_clearfix.scss b/public/bootstrap/scss/mixins/_clearfix.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/mixins/_clearfix.scss rename to public/bootstrap/scss/mixins/_clearfix.scss diff --git a/src/Resources/public/bootstrap/scss/mixins/_float.scss b/public/bootstrap/scss/mixins/_float.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/mixins/_float.scss rename to public/bootstrap/scss/mixins/_float.scss diff --git a/src/Resources/public/bootstrap/scss/mixins/_forms.scss b/public/bootstrap/scss/mixins/_forms.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/mixins/_forms.scss rename to public/bootstrap/scss/mixins/_forms.scss diff --git a/src/Resources/public/bootstrap/scss/mixins/_gradients.scss b/public/bootstrap/scss/mixins/_gradients.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/mixins/_gradients.scss rename to public/bootstrap/scss/mixins/_gradients.scss diff --git a/src/Resources/public/bootstrap/scss/mixins/_grid-framework.scss b/public/bootstrap/scss/mixins/_grid-framework.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/mixins/_grid-framework.scss rename to public/bootstrap/scss/mixins/_grid-framework.scss diff --git a/src/Resources/public/bootstrap/scss/mixins/_grid.scss b/public/bootstrap/scss/mixins/_grid.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/mixins/_grid.scss rename to public/bootstrap/scss/mixins/_grid.scss diff --git a/src/Resources/public/bootstrap/scss/mixins/_hover.scss b/public/bootstrap/scss/mixins/_hover.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/mixins/_hover.scss rename to public/bootstrap/scss/mixins/_hover.scss diff --git a/src/Resources/public/bootstrap/scss/mixins/_image.scss b/public/bootstrap/scss/mixins/_image.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/mixins/_image.scss rename to public/bootstrap/scss/mixins/_image.scss diff --git a/src/Resources/public/bootstrap/scss/mixins/_list-group.scss b/public/bootstrap/scss/mixins/_list-group.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/mixins/_list-group.scss rename to public/bootstrap/scss/mixins/_list-group.scss diff --git a/src/Resources/public/bootstrap/scss/mixins/_lists.scss b/public/bootstrap/scss/mixins/_lists.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/mixins/_lists.scss rename to public/bootstrap/scss/mixins/_lists.scss diff --git a/src/Resources/public/bootstrap/scss/mixins/_nav-divider.scss b/public/bootstrap/scss/mixins/_nav-divider.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/mixins/_nav-divider.scss rename to public/bootstrap/scss/mixins/_nav-divider.scss diff --git a/src/Resources/public/bootstrap/scss/mixins/_navbar-align.scss b/public/bootstrap/scss/mixins/_navbar-align.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/mixins/_navbar-align.scss rename to public/bootstrap/scss/mixins/_navbar-align.scss diff --git a/src/Resources/public/bootstrap/scss/mixins/_pagination.scss b/public/bootstrap/scss/mixins/_pagination.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/mixins/_pagination.scss rename to public/bootstrap/scss/mixins/_pagination.scss diff --git a/src/Resources/public/bootstrap/scss/mixins/_reset-text.scss b/public/bootstrap/scss/mixins/_reset-text.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/mixins/_reset-text.scss rename to public/bootstrap/scss/mixins/_reset-text.scss diff --git a/src/Resources/public/bootstrap/scss/mixins/_resize.scss b/public/bootstrap/scss/mixins/_resize.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/mixins/_resize.scss rename to public/bootstrap/scss/mixins/_resize.scss diff --git a/src/Resources/public/bootstrap/scss/mixins/_screen-reader.scss b/public/bootstrap/scss/mixins/_screen-reader.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/mixins/_screen-reader.scss rename to public/bootstrap/scss/mixins/_screen-reader.scss diff --git a/src/Resources/public/bootstrap/scss/mixins/_size.scss b/public/bootstrap/scss/mixins/_size.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/mixins/_size.scss rename to public/bootstrap/scss/mixins/_size.scss diff --git a/src/Resources/public/bootstrap/scss/mixins/_table-row.scss b/public/bootstrap/scss/mixins/_table-row.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/mixins/_table-row.scss rename to public/bootstrap/scss/mixins/_table-row.scss diff --git a/src/Resources/public/bootstrap/scss/mixins/_text-emphasis.scss b/public/bootstrap/scss/mixins/_text-emphasis.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/mixins/_text-emphasis.scss rename to public/bootstrap/scss/mixins/_text-emphasis.scss diff --git a/src/Resources/public/bootstrap/scss/mixins/_text-hide.scss b/public/bootstrap/scss/mixins/_text-hide.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/mixins/_text-hide.scss rename to public/bootstrap/scss/mixins/_text-hide.scss diff --git a/src/Resources/public/bootstrap/scss/mixins/_text-truncate.scss b/public/bootstrap/scss/mixins/_text-truncate.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/mixins/_text-truncate.scss rename to public/bootstrap/scss/mixins/_text-truncate.scss diff --git a/src/Resources/public/bootstrap/scss/mixins/_transition.scss b/public/bootstrap/scss/mixins/_transition.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/mixins/_transition.scss rename to public/bootstrap/scss/mixins/_transition.scss diff --git a/src/Resources/public/bootstrap/scss/mixins/_visibility.scss b/public/bootstrap/scss/mixins/_visibility.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/mixins/_visibility.scss rename to public/bootstrap/scss/mixins/_visibility.scss diff --git a/src/Resources/public/bootstrap/scss/utilities/_align.scss b/public/bootstrap/scss/utilities/_align.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/utilities/_align.scss rename to public/bootstrap/scss/utilities/_align.scss diff --git a/src/Resources/public/bootstrap/scss/utilities/_background.scss b/public/bootstrap/scss/utilities/_background.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/utilities/_background.scss rename to public/bootstrap/scss/utilities/_background.scss diff --git a/src/Resources/public/bootstrap/scss/utilities/_borders.scss b/public/bootstrap/scss/utilities/_borders.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/utilities/_borders.scss rename to public/bootstrap/scss/utilities/_borders.scss diff --git a/src/Resources/public/bootstrap/scss/utilities/_clearfix.scss b/public/bootstrap/scss/utilities/_clearfix.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/utilities/_clearfix.scss rename to public/bootstrap/scss/utilities/_clearfix.scss diff --git a/src/Resources/public/bootstrap/scss/utilities/_display.scss b/public/bootstrap/scss/utilities/_display.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/utilities/_display.scss rename to public/bootstrap/scss/utilities/_display.scss diff --git a/src/Resources/public/bootstrap/scss/utilities/_embed.scss b/public/bootstrap/scss/utilities/_embed.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/utilities/_embed.scss rename to public/bootstrap/scss/utilities/_embed.scss diff --git a/src/Resources/public/bootstrap/scss/utilities/_flex.scss b/public/bootstrap/scss/utilities/_flex.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/utilities/_flex.scss rename to public/bootstrap/scss/utilities/_flex.scss diff --git a/src/Resources/public/bootstrap/scss/utilities/_float.scss b/public/bootstrap/scss/utilities/_float.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/utilities/_float.scss rename to public/bootstrap/scss/utilities/_float.scss diff --git a/src/Resources/public/bootstrap/scss/utilities/_position.scss b/public/bootstrap/scss/utilities/_position.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/utilities/_position.scss rename to public/bootstrap/scss/utilities/_position.scss diff --git a/src/Resources/public/bootstrap/scss/utilities/_screenreaders.scss b/public/bootstrap/scss/utilities/_screenreaders.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/utilities/_screenreaders.scss rename to public/bootstrap/scss/utilities/_screenreaders.scss diff --git a/src/Resources/public/bootstrap/scss/utilities/_sizing.scss b/public/bootstrap/scss/utilities/_sizing.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/utilities/_sizing.scss rename to public/bootstrap/scss/utilities/_sizing.scss diff --git a/src/Resources/public/bootstrap/scss/utilities/_spacing.scss b/public/bootstrap/scss/utilities/_spacing.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/utilities/_spacing.scss rename to public/bootstrap/scss/utilities/_spacing.scss diff --git a/src/Resources/public/bootstrap/scss/utilities/_text.scss b/public/bootstrap/scss/utilities/_text.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/utilities/_text.scss rename to public/bootstrap/scss/utilities/_text.scss diff --git a/src/Resources/public/bootstrap/scss/utilities/_visibility.scss b/public/bootstrap/scss/utilities/_visibility.scss similarity index 100% rename from src/Resources/public/bootstrap/scss/utilities/_visibility.scss rename to public/bootstrap/scss/utilities/_visibility.scss diff --git a/src/Resources/public/fontawesome/LICENSE.txt b/public/fontawesome/LICENSE.txt similarity index 100% rename from src/Resources/public/fontawesome/LICENSE.txt rename to public/fontawesome/LICENSE.txt diff --git a/src/Resources/public/fontawesome/css/all.css b/public/fontawesome/css/all.css similarity index 100% rename from src/Resources/public/fontawesome/css/all.css rename to public/fontawesome/css/all.css diff --git a/src/Resources/public/fontawesome/css/all.min.css b/public/fontawesome/css/all.min.css similarity index 100% rename from src/Resources/public/fontawesome/css/all.min.css rename to public/fontawesome/css/all.min.css diff --git a/src/Resources/public/fontawesome/css/brands.css b/public/fontawesome/css/brands.css similarity index 100% rename from src/Resources/public/fontawesome/css/brands.css rename to public/fontawesome/css/brands.css diff --git a/src/Resources/public/fontawesome/css/brands.min.css b/public/fontawesome/css/brands.min.css similarity index 100% rename from src/Resources/public/fontawesome/css/brands.min.css rename to public/fontawesome/css/brands.min.css diff --git a/src/Resources/public/fontawesome/css/fontawesome.css b/public/fontawesome/css/fontawesome.css similarity index 100% rename from src/Resources/public/fontawesome/css/fontawesome.css rename to public/fontawesome/css/fontawesome.css diff --git a/src/Resources/public/fontawesome/css/fontawesome.min.css b/public/fontawesome/css/fontawesome.min.css similarity index 100% rename from src/Resources/public/fontawesome/css/fontawesome.min.css rename to public/fontawesome/css/fontawesome.min.css diff --git a/src/Resources/public/fontawesome/css/regular.css b/public/fontawesome/css/regular.css similarity index 100% rename from src/Resources/public/fontawesome/css/regular.css rename to public/fontawesome/css/regular.css diff --git a/src/Resources/public/fontawesome/css/regular.min.css b/public/fontawesome/css/regular.min.css similarity index 100% rename from src/Resources/public/fontawesome/css/regular.min.css rename to public/fontawesome/css/regular.min.css diff --git a/src/Resources/public/fontawesome/css/solid.css b/public/fontawesome/css/solid.css similarity index 100% rename from src/Resources/public/fontawesome/css/solid.css rename to public/fontawesome/css/solid.css diff --git a/src/Resources/public/fontawesome/css/solid.min.css b/public/fontawesome/css/solid.min.css similarity index 100% rename from src/Resources/public/fontawesome/css/solid.min.css rename to public/fontawesome/css/solid.min.css diff --git a/src/Resources/public/fontawesome/css/svg-with-js.css b/public/fontawesome/css/svg-with-js.css similarity index 100% rename from src/Resources/public/fontawesome/css/svg-with-js.css rename to public/fontawesome/css/svg-with-js.css diff --git a/src/Resources/public/fontawesome/css/svg-with-js.min.css b/public/fontawesome/css/svg-with-js.min.css similarity index 100% rename from src/Resources/public/fontawesome/css/svg-with-js.min.css rename to public/fontawesome/css/svg-with-js.min.css diff --git a/src/Resources/public/fontawesome/css/v4-shims.css b/public/fontawesome/css/v4-shims.css similarity index 100% rename from src/Resources/public/fontawesome/css/v4-shims.css rename to public/fontawesome/css/v4-shims.css diff --git a/src/Resources/public/fontawesome/css/v4-shims.min.css b/public/fontawesome/css/v4-shims.min.css similarity index 100% rename from src/Resources/public/fontawesome/css/v4-shims.min.css rename to public/fontawesome/css/v4-shims.min.css diff --git a/src/Resources/public/fontawesome/js/all.js b/public/fontawesome/js/all.js similarity index 100% rename from src/Resources/public/fontawesome/js/all.js rename to public/fontawesome/js/all.js diff --git a/src/Resources/public/fontawesome/js/all.min.js b/public/fontawesome/js/all.min.js similarity index 100% rename from src/Resources/public/fontawesome/js/all.min.js rename to public/fontawesome/js/all.min.js diff --git a/src/Resources/public/fontawesome/js/brands.js b/public/fontawesome/js/brands.js similarity index 100% rename from src/Resources/public/fontawesome/js/brands.js rename to public/fontawesome/js/brands.js diff --git a/src/Resources/public/fontawesome/js/brands.min.js b/public/fontawesome/js/brands.min.js similarity index 100% rename from src/Resources/public/fontawesome/js/brands.min.js rename to public/fontawesome/js/brands.min.js diff --git a/src/Resources/public/fontawesome/js/fontawesome.js b/public/fontawesome/js/fontawesome.js similarity index 100% rename from src/Resources/public/fontawesome/js/fontawesome.js rename to public/fontawesome/js/fontawesome.js diff --git a/src/Resources/public/fontawesome/js/fontawesome.min.js b/public/fontawesome/js/fontawesome.min.js similarity index 100% rename from src/Resources/public/fontawesome/js/fontawesome.min.js rename to public/fontawesome/js/fontawesome.min.js diff --git a/src/Resources/public/fontawesome/js/regular.js b/public/fontawesome/js/regular.js similarity index 100% rename from src/Resources/public/fontawesome/js/regular.js rename to public/fontawesome/js/regular.js diff --git a/src/Resources/public/fontawesome/js/regular.min.js b/public/fontawesome/js/regular.min.js similarity index 100% rename from src/Resources/public/fontawesome/js/regular.min.js rename to public/fontawesome/js/regular.min.js diff --git a/src/Resources/public/fontawesome/js/solid.js b/public/fontawesome/js/solid.js similarity index 100% rename from src/Resources/public/fontawesome/js/solid.js rename to public/fontawesome/js/solid.js diff --git a/src/Resources/public/fontawesome/js/solid.min.js b/public/fontawesome/js/solid.min.js similarity index 100% rename from src/Resources/public/fontawesome/js/solid.min.js rename to public/fontawesome/js/solid.min.js diff --git a/src/Resources/public/fontawesome/js/v4-shims.js b/public/fontawesome/js/v4-shims.js similarity index 100% rename from src/Resources/public/fontawesome/js/v4-shims.js rename to public/fontawesome/js/v4-shims.js diff --git a/src/Resources/public/fontawesome/js/v4-shims.min.js b/public/fontawesome/js/v4-shims.min.js similarity index 100% rename from src/Resources/public/fontawesome/js/v4-shims.min.js rename to public/fontawesome/js/v4-shims.min.js diff --git a/src/Resources/public/fontawesome/less/_animated.less b/public/fontawesome/less/_animated.less similarity index 100% rename from src/Resources/public/fontawesome/less/_animated.less rename to public/fontawesome/less/_animated.less diff --git a/src/Resources/public/fontawesome/less/_bordered-pulled.less b/public/fontawesome/less/_bordered-pulled.less similarity index 100% rename from src/Resources/public/fontawesome/less/_bordered-pulled.less rename to public/fontawesome/less/_bordered-pulled.less diff --git a/src/Resources/public/fontawesome/less/_core.less b/public/fontawesome/less/_core.less similarity index 100% rename from src/Resources/public/fontawesome/less/_core.less rename to public/fontawesome/less/_core.less diff --git a/src/Resources/public/fontawesome/less/_fixed-width.less b/public/fontawesome/less/_fixed-width.less similarity index 100% rename from src/Resources/public/fontawesome/less/_fixed-width.less rename to public/fontawesome/less/_fixed-width.less diff --git a/src/Resources/public/fontawesome/less/_icons.less b/public/fontawesome/less/_icons.less similarity index 100% rename from src/Resources/public/fontawesome/less/_icons.less rename to public/fontawesome/less/_icons.less diff --git a/src/Resources/public/fontawesome/less/_larger.less b/public/fontawesome/less/_larger.less similarity index 100% rename from src/Resources/public/fontawesome/less/_larger.less rename to public/fontawesome/less/_larger.less diff --git a/src/Resources/public/fontawesome/less/_list.less b/public/fontawesome/less/_list.less similarity index 100% rename from src/Resources/public/fontawesome/less/_list.less rename to public/fontawesome/less/_list.less diff --git a/src/Resources/public/fontawesome/less/_mixins.less b/public/fontawesome/less/_mixins.less similarity index 100% rename from src/Resources/public/fontawesome/less/_mixins.less rename to public/fontawesome/less/_mixins.less diff --git a/src/Resources/public/fontawesome/less/_rotated-flipped.less b/public/fontawesome/less/_rotated-flipped.less similarity index 100% rename from src/Resources/public/fontawesome/less/_rotated-flipped.less rename to public/fontawesome/less/_rotated-flipped.less diff --git a/src/Resources/public/fontawesome/less/_screen-reader.less b/public/fontawesome/less/_screen-reader.less similarity index 100% rename from src/Resources/public/fontawesome/less/_screen-reader.less rename to public/fontawesome/less/_screen-reader.less diff --git a/src/Resources/public/fontawesome/less/_shims.less b/public/fontawesome/less/_shims.less similarity index 100% rename from src/Resources/public/fontawesome/less/_shims.less rename to public/fontawesome/less/_shims.less diff --git a/src/Resources/public/fontawesome/less/_stacked.less b/public/fontawesome/less/_stacked.less similarity index 100% rename from src/Resources/public/fontawesome/less/_stacked.less rename to public/fontawesome/less/_stacked.less diff --git a/src/Resources/public/fontawesome/less/_variables.less b/public/fontawesome/less/_variables.less similarity index 100% rename from src/Resources/public/fontawesome/less/_variables.less rename to public/fontawesome/less/_variables.less diff --git a/src/Resources/public/fontawesome/less/brands.less b/public/fontawesome/less/brands.less similarity index 100% rename from src/Resources/public/fontawesome/less/brands.less rename to public/fontawesome/less/brands.less diff --git a/src/Resources/public/fontawesome/less/fontawesome.less b/public/fontawesome/less/fontawesome.less similarity index 100% rename from src/Resources/public/fontawesome/less/fontawesome.less rename to public/fontawesome/less/fontawesome.less diff --git a/src/Resources/public/fontawesome/less/regular.less b/public/fontawesome/less/regular.less similarity index 100% rename from src/Resources/public/fontawesome/less/regular.less rename to public/fontawesome/less/regular.less diff --git a/src/Resources/public/fontawesome/less/solid.less b/public/fontawesome/less/solid.less similarity index 100% rename from src/Resources/public/fontawesome/less/solid.less rename to public/fontawesome/less/solid.less diff --git a/src/Resources/public/fontawesome/less/v4-shims.less b/public/fontawesome/less/v4-shims.less similarity index 100% rename from src/Resources/public/fontawesome/less/v4-shims.less rename to public/fontawesome/less/v4-shims.less diff --git a/src/Resources/public/fontawesome/metadata/categories.yml b/public/fontawesome/metadata/categories.yml similarity index 100% rename from src/Resources/public/fontawesome/metadata/categories.yml rename to public/fontawesome/metadata/categories.yml diff --git a/src/Resources/public/fontawesome/metadata/icons.json b/public/fontawesome/metadata/icons.json similarity index 100% rename from src/Resources/public/fontawesome/metadata/icons.json rename to public/fontawesome/metadata/icons.json diff --git a/src/Resources/public/fontawesome/metadata/icons.yml b/public/fontawesome/metadata/icons.yml similarity index 100% rename from src/Resources/public/fontawesome/metadata/icons.yml rename to public/fontawesome/metadata/icons.yml diff --git a/src/Resources/public/fontawesome/metadata/shims.json b/public/fontawesome/metadata/shims.json similarity index 100% rename from src/Resources/public/fontawesome/metadata/shims.json rename to public/fontawesome/metadata/shims.json diff --git a/src/Resources/public/fontawesome/metadata/shims.yml b/public/fontawesome/metadata/shims.yml similarity index 100% rename from src/Resources/public/fontawesome/metadata/shims.yml rename to public/fontawesome/metadata/shims.yml diff --git a/src/Resources/public/fontawesome/metadata/sponsors.yml b/public/fontawesome/metadata/sponsors.yml similarity index 100% rename from src/Resources/public/fontawesome/metadata/sponsors.yml rename to public/fontawesome/metadata/sponsors.yml diff --git a/src/Resources/public/fontawesome/scss/_animated.scss b/public/fontawesome/scss/_animated.scss similarity index 100% rename from src/Resources/public/fontawesome/scss/_animated.scss rename to public/fontawesome/scss/_animated.scss diff --git a/src/Resources/public/fontawesome/scss/_bordered-pulled.scss b/public/fontawesome/scss/_bordered-pulled.scss similarity index 100% rename from src/Resources/public/fontawesome/scss/_bordered-pulled.scss rename to public/fontawesome/scss/_bordered-pulled.scss diff --git a/src/Resources/public/fontawesome/scss/_core.scss b/public/fontawesome/scss/_core.scss similarity index 100% rename from src/Resources/public/fontawesome/scss/_core.scss rename to public/fontawesome/scss/_core.scss diff --git a/src/Resources/public/fontawesome/scss/_fixed-width.scss b/public/fontawesome/scss/_fixed-width.scss similarity index 100% rename from src/Resources/public/fontawesome/scss/_fixed-width.scss rename to public/fontawesome/scss/_fixed-width.scss diff --git a/src/Resources/public/fontawesome/scss/_icons.scss b/public/fontawesome/scss/_icons.scss similarity index 100% rename from src/Resources/public/fontawesome/scss/_icons.scss rename to public/fontawesome/scss/_icons.scss diff --git a/src/Resources/public/fontawesome/scss/_larger.scss b/public/fontawesome/scss/_larger.scss similarity index 100% rename from src/Resources/public/fontawesome/scss/_larger.scss rename to public/fontawesome/scss/_larger.scss diff --git a/src/Resources/public/fontawesome/scss/_list.scss b/public/fontawesome/scss/_list.scss similarity index 100% rename from src/Resources/public/fontawesome/scss/_list.scss rename to public/fontawesome/scss/_list.scss diff --git a/src/Resources/public/fontawesome/scss/_mixins.scss b/public/fontawesome/scss/_mixins.scss similarity index 100% rename from src/Resources/public/fontawesome/scss/_mixins.scss rename to public/fontawesome/scss/_mixins.scss diff --git a/src/Resources/public/fontawesome/scss/_rotated-flipped.scss b/public/fontawesome/scss/_rotated-flipped.scss similarity index 100% rename from src/Resources/public/fontawesome/scss/_rotated-flipped.scss rename to public/fontawesome/scss/_rotated-flipped.scss diff --git a/src/Resources/public/fontawesome/scss/_screen-reader.scss b/public/fontawesome/scss/_screen-reader.scss similarity index 100% rename from src/Resources/public/fontawesome/scss/_screen-reader.scss rename to public/fontawesome/scss/_screen-reader.scss diff --git a/src/Resources/public/fontawesome/scss/_shims.scss b/public/fontawesome/scss/_shims.scss similarity index 100% rename from src/Resources/public/fontawesome/scss/_shims.scss rename to public/fontawesome/scss/_shims.scss diff --git a/src/Resources/public/fontawesome/scss/_stacked.scss b/public/fontawesome/scss/_stacked.scss similarity index 100% rename from src/Resources/public/fontawesome/scss/_stacked.scss rename to public/fontawesome/scss/_stacked.scss diff --git a/src/Resources/public/fontawesome/scss/_variables.scss b/public/fontawesome/scss/_variables.scss similarity index 100% rename from src/Resources/public/fontawesome/scss/_variables.scss rename to public/fontawesome/scss/_variables.scss diff --git a/src/Resources/public/fontawesome/scss/brands.scss b/public/fontawesome/scss/brands.scss similarity index 100% rename from src/Resources/public/fontawesome/scss/brands.scss rename to public/fontawesome/scss/brands.scss diff --git a/src/Resources/public/fontawesome/scss/fontawesome.scss b/public/fontawesome/scss/fontawesome.scss similarity index 100% rename from src/Resources/public/fontawesome/scss/fontawesome.scss rename to public/fontawesome/scss/fontawesome.scss diff --git a/src/Resources/public/fontawesome/scss/regular.scss b/public/fontawesome/scss/regular.scss similarity index 100% rename from src/Resources/public/fontawesome/scss/regular.scss rename to public/fontawesome/scss/regular.scss diff --git a/src/Resources/public/fontawesome/scss/solid.scss b/public/fontawesome/scss/solid.scss similarity index 100% rename from src/Resources/public/fontawesome/scss/solid.scss rename to public/fontawesome/scss/solid.scss diff --git a/src/Resources/public/fontawesome/scss/v4-shims.scss b/public/fontawesome/scss/v4-shims.scss similarity index 100% rename from src/Resources/public/fontawesome/scss/v4-shims.scss rename to public/fontawesome/scss/v4-shims.scss diff --git a/src/Resources/public/fontawesome/sprites/brands.svg b/public/fontawesome/sprites/brands.svg similarity index 100% rename from src/Resources/public/fontawesome/sprites/brands.svg rename to public/fontawesome/sprites/brands.svg diff --git a/src/Resources/public/fontawesome/sprites/regular.svg b/public/fontawesome/sprites/regular.svg similarity index 100% rename from src/Resources/public/fontawesome/sprites/regular.svg rename to public/fontawesome/sprites/regular.svg diff --git a/src/Resources/public/fontawesome/sprites/solid.svg b/public/fontawesome/sprites/solid.svg similarity index 100% rename from src/Resources/public/fontawesome/sprites/solid.svg rename to public/fontawesome/sprites/solid.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/500px.svg b/public/fontawesome/svgs/brands/500px.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/500px.svg rename to public/fontawesome/svgs/brands/500px.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/accessible-icon.svg b/public/fontawesome/svgs/brands/accessible-icon.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/accessible-icon.svg rename to public/fontawesome/svgs/brands/accessible-icon.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/accusoft.svg b/public/fontawesome/svgs/brands/accusoft.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/accusoft.svg rename to public/fontawesome/svgs/brands/accusoft.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/adn.svg b/public/fontawesome/svgs/brands/adn.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/adn.svg rename to public/fontawesome/svgs/brands/adn.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/adversal.svg b/public/fontawesome/svgs/brands/adversal.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/adversal.svg rename to public/fontawesome/svgs/brands/adversal.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/affiliatetheme.svg b/public/fontawesome/svgs/brands/affiliatetheme.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/affiliatetheme.svg rename to public/fontawesome/svgs/brands/affiliatetheme.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/algolia.svg b/public/fontawesome/svgs/brands/algolia.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/algolia.svg rename to public/fontawesome/svgs/brands/algolia.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/alipay.svg b/public/fontawesome/svgs/brands/alipay.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/alipay.svg rename to public/fontawesome/svgs/brands/alipay.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/amazon-pay.svg b/public/fontawesome/svgs/brands/amazon-pay.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/amazon-pay.svg rename to public/fontawesome/svgs/brands/amazon-pay.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/amazon.svg b/public/fontawesome/svgs/brands/amazon.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/amazon.svg rename to public/fontawesome/svgs/brands/amazon.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/amilia.svg b/public/fontawesome/svgs/brands/amilia.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/amilia.svg rename to public/fontawesome/svgs/brands/amilia.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/android.svg b/public/fontawesome/svgs/brands/android.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/android.svg rename to public/fontawesome/svgs/brands/android.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/angellist.svg b/public/fontawesome/svgs/brands/angellist.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/angellist.svg rename to public/fontawesome/svgs/brands/angellist.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/angrycreative.svg b/public/fontawesome/svgs/brands/angrycreative.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/angrycreative.svg rename to public/fontawesome/svgs/brands/angrycreative.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/angular.svg b/public/fontawesome/svgs/brands/angular.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/angular.svg rename to public/fontawesome/svgs/brands/angular.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/app-store-ios.svg b/public/fontawesome/svgs/brands/app-store-ios.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/app-store-ios.svg rename to public/fontawesome/svgs/brands/app-store-ios.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/app-store.svg b/public/fontawesome/svgs/brands/app-store.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/app-store.svg rename to public/fontawesome/svgs/brands/app-store.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/apper.svg b/public/fontawesome/svgs/brands/apper.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/apper.svg rename to public/fontawesome/svgs/brands/apper.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/apple-pay.svg b/public/fontawesome/svgs/brands/apple-pay.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/apple-pay.svg rename to public/fontawesome/svgs/brands/apple-pay.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/apple.svg b/public/fontawesome/svgs/brands/apple.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/apple.svg rename to public/fontawesome/svgs/brands/apple.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/asymmetrik.svg b/public/fontawesome/svgs/brands/asymmetrik.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/asymmetrik.svg rename to public/fontawesome/svgs/brands/asymmetrik.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/audible.svg b/public/fontawesome/svgs/brands/audible.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/audible.svg rename to public/fontawesome/svgs/brands/audible.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/autoprefixer.svg b/public/fontawesome/svgs/brands/autoprefixer.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/autoprefixer.svg rename to public/fontawesome/svgs/brands/autoprefixer.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/avianex.svg b/public/fontawesome/svgs/brands/avianex.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/avianex.svg rename to public/fontawesome/svgs/brands/avianex.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/aviato.svg b/public/fontawesome/svgs/brands/aviato.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/aviato.svg rename to public/fontawesome/svgs/brands/aviato.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/aws.svg b/public/fontawesome/svgs/brands/aws.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/aws.svg rename to public/fontawesome/svgs/brands/aws.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/bandcamp.svg b/public/fontawesome/svgs/brands/bandcamp.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/bandcamp.svg rename to public/fontawesome/svgs/brands/bandcamp.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/behance-square.svg b/public/fontawesome/svgs/brands/behance-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/behance-square.svg rename to public/fontawesome/svgs/brands/behance-square.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/behance.svg b/public/fontawesome/svgs/brands/behance.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/behance.svg rename to public/fontawesome/svgs/brands/behance.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/bimobject.svg b/public/fontawesome/svgs/brands/bimobject.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/bimobject.svg rename to public/fontawesome/svgs/brands/bimobject.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/bitbucket.svg b/public/fontawesome/svgs/brands/bitbucket.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/bitbucket.svg rename to public/fontawesome/svgs/brands/bitbucket.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/bitcoin.svg b/public/fontawesome/svgs/brands/bitcoin.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/bitcoin.svg rename to public/fontawesome/svgs/brands/bitcoin.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/bity.svg b/public/fontawesome/svgs/brands/bity.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/bity.svg rename to public/fontawesome/svgs/brands/bity.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/black-tie.svg b/public/fontawesome/svgs/brands/black-tie.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/black-tie.svg rename to public/fontawesome/svgs/brands/black-tie.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/blackberry.svg b/public/fontawesome/svgs/brands/blackberry.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/blackberry.svg rename to public/fontawesome/svgs/brands/blackberry.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/blogger-b.svg b/public/fontawesome/svgs/brands/blogger-b.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/blogger-b.svg rename to public/fontawesome/svgs/brands/blogger-b.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/blogger.svg b/public/fontawesome/svgs/brands/blogger.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/blogger.svg rename to public/fontawesome/svgs/brands/blogger.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/bluetooth-b.svg b/public/fontawesome/svgs/brands/bluetooth-b.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/bluetooth-b.svg rename to public/fontawesome/svgs/brands/bluetooth-b.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/bluetooth.svg b/public/fontawesome/svgs/brands/bluetooth.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/bluetooth.svg rename to public/fontawesome/svgs/brands/bluetooth.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/btc.svg b/public/fontawesome/svgs/brands/btc.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/btc.svg rename to public/fontawesome/svgs/brands/btc.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/buromobelexperte.svg b/public/fontawesome/svgs/brands/buromobelexperte.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/buromobelexperte.svg rename to public/fontawesome/svgs/brands/buromobelexperte.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/buysellads.svg b/public/fontawesome/svgs/brands/buysellads.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/buysellads.svg rename to public/fontawesome/svgs/brands/buysellads.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/cc-amazon-pay.svg b/public/fontawesome/svgs/brands/cc-amazon-pay.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/cc-amazon-pay.svg rename to public/fontawesome/svgs/brands/cc-amazon-pay.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/cc-amex.svg b/public/fontawesome/svgs/brands/cc-amex.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/cc-amex.svg rename to public/fontawesome/svgs/brands/cc-amex.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/cc-apple-pay.svg b/public/fontawesome/svgs/brands/cc-apple-pay.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/cc-apple-pay.svg rename to public/fontawesome/svgs/brands/cc-apple-pay.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/cc-diners-club.svg b/public/fontawesome/svgs/brands/cc-diners-club.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/cc-diners-club.svg rename to public/fontawesome/svgs/brands/cc-diners-club.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/cc-discover.svg b/public/fontawesome/svgs/brands/cc-discover.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/cc-discover.svg rename to public/fontawesome/svgs/brands/cc-discover.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/cc-jcb.svg b/public/fontawesome/svgs/brands/cc-jcb.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/cc-jcb.svg rename to public/fontawesome/svgs/brands/cc-jcb.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/cc-mastercard.svg b/public/fontawesome/svgs/brands/cc-mastercard.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/cc-mastercard.svg rename to public/fontawesome/svgs/brands/cc-mastercard.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/cc-paypal.svg b/public/fontawesome/svgs/brands/cc-paypal.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/cc-paypal.svg rename to public/fontawesome/svgs/brands/cc-paypal.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/cc-stripe.svg b/public/fontawesome/svgs/brands/cc-stripe.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/cc-stripe.svg rename to public/fontawesome/svgs/brands/cc-stripe.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/cc-visa.svg b/public/fontawesome/svgs/brands/cc-visa.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/cc-visa.svg rename to public/fontawesome/svgs/brands/cc-visa.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/centercode.svg b/public/fontawesome/svgs/brands/centercode.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/centercode.svg rename to public/fontawesome/svgs/brands/centercode.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/chrome.svg b/public/fontawesome/svgs/brands/chrome.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/chrome.svg rename to public/fontawesome/svgs/brands/chrome.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/cloudscale.svg b/public/fontawesome/svgs/brands/cloudscale.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/cloudscale.svg rename to public/fontawesome/svgs/brands/cloudscale.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/cloudsmith.svg b/public/fontawesome/svgs/brands/cloudsmith.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/cloudsmith.svg rename to public/fontawesome/svgs/brands/cloudsmith.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/cloudversify.svg b/public/fontawesome/svgs/brands/cloudversify.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/cloudversify.svg rename to public/fontawesome/svgs/brands/cloudversify.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/codepen.svg b/public/fontawesome/svgs/brands/codepen.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/codepen.svg rename to public/fontawesome/svgs/brands/codepen.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/codiepie.svg b/public/fontawesome/svgs/brands/codiepie.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/codiepie.svg rename to public/fontawesome/svgs/brands/codiepie.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/connectdevelop.svg b/public/fontawesome/svgs/brands/connectdevelop.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/connectdevelop.svg rename to public/fontawesome/svgs/brands/connectdevelop.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/contao.svg b/public/fontawesome/svgs/brands/contao.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/contao.svg rename to public/fontawesome/svgs/brands/contao.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/cpanel.svg b/public/fontawesome/svgs/brands/cpanel.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/cpanel.svg rename to public/fontawesome/svgs/brands/cpanel.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/creative-commons-by.svg b/public/fontawesome/svgs/brands/creative-commons-by.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/creative-commons-by.svg rename to public/fontawesome/svgs/brands/creative-commons-by.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/creative-commons-nc-eu.svg b/public/fontawesome/svgs/brands/creative-commons-nc-eu.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/creative-commons-nc-eu.svg rename to public/fontawesome/svgs/brands/creative-commons-nc-eu.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/creative-commons-nc-jp.svg b/public/fontawesome/svgs/brands/creative-commons-nc-jp.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/creative-commons-nc-jp.svg rename to public/fontawesome/svgs/brands/creative-commons-nc-jp.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/creative-commons-nc.svg b/public/fontawesome/svgs/brands/creative-commons-nc.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/creative-commons-nc.svg rename to public/fontawesome/svgs/brands/creative-commons-nc.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/creative-commons-nd.svg b/public/fontawesome/svgs/brands/creative-commons-nd.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/creative-commons-nd.svg rename to public/fontawesome/svgs/brands/creative-commons-nd.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/creative-commons-pd-alt.svg b/public/fontawesome/svgs/brands/creative-commons-pd-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/creative-commons-pd-alt.svg rename to public/fontawesome/svgs/brands/creative-commons-pd-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/creative-commons-pd.svg b/public/fontawesome/svgs/brands/creative-commons-pd.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/creative-commons-pd.svg rename to public/fontawesome/svgs/brands/creative-commons-pd.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/creative-commons-remix.svg b/public/fontawesome/svgs/brands/creative-commons-remix.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/creative-commons-remix.svg rename to public/fontawesome/svgs/brands/creative-commons-remix.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/creative-commons-sa.svg b/public/fontawesome/svgs/brands/creative-commons-sa.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/creative-commons-sa.svg rename to public/fontawesome/svgs/brands/creative-commons-sa.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/creative-commons-sampling-plus.svg b/public/fontawesome/svgs/brands/creative-commons-sampling-plus.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/creative-commons-sampling-plus.svg rename to public/fontawesome/svgs/brands/creative-commons-sampling-plus.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/creative-commons-sampling.svg b/public/fontawesome/svgs/brands/creative-commons-sampling.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/creative-commons-sampling.svg rename to public/fontawesome/svgs/brands/creative-commons-sampling.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/creative-commons-share.svg b/public/fontawesome/svgs/brands/creative-commons-share.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/creative-commons-share.svg rename to public/fontawesome/svgs/brands/creative-commons-share.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/creative-commons.svg b/public/fontawesome/svgs/brands/creative-commons.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/creative-commons.svg rename to public/fontawesome/svgs/brands/creative-commons.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/css3-alt.svg b/public/fontawesome/svgs/brands/css3-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/css3-alt.svg rename to public/fontawesome/svgs/brands/css3-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/css3.svg b/public/fontawesome/svgs/brands/css3.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/css3.svg rename to public/fontawesome/svgs/brands/css3.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/cuttlefish.svg b/public/fontawesome/svgs/brands/cuttlefish.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/cuttlefish.svg rename to public/fontawesome/svgs/brands/cuttlefish.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/d-and-d.svg b/public/fontawesome/svgs/brands/d-and-d.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/d-and-d.svg rename to public/fontawesome/svgs/brands/d-and-d.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/dashcube.svg b/public/fontawesome/svgs/brands/dashcube.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/dashcube.svg rename to public/fontawesome/svgs/brands/dashcube.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/delicious.svg b/public/fontawesome/svgs/brands/delicious.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/delicious.svg rename to public/fontawesome/svgs/brands/delicious.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/deploydog.svg b/public/fontawesome/svgs/brands/deploydog.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/deploydog.svg rename to public/fontawesome/svgs/brands/deploydog.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/deskpro.svg b/public/fontawesome/svgs/brands/deskpro.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/deskpro.svg rename to public/fontawesome/svgs/brands/deskpro.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/deviantart.svg b/public/fontawesome/svgs/brands/deviantart.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/deviantart.svg rename to public/fontawesome/svgs/brands/deviantart.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/digg.svg b/public/fontawesome/svgs/brands/digg.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/digg.svg rename to public/fontawesome/svgs/brands/digg.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/digital-ocean.svg b/public/fontawesome/svgs/brands/digital-ocean.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/digital-ocean.svg rename to public/fontawesome/svgs/brands/digital-ocean.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/discord.svg b/public/fontawesome/svgs/brands/discord.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/discord.svg rename to public/fontawesome/svgs/brands/discord.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/discourse.svg b/public/fontawesome/svgs/brands/discourse.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/discourse.svg rename to public/fontawesome/svgs/brands/discourse.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/dochub.svg b/public/fontawesome/svgs/brands/dochub.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/dochub.svg rename to public/fontawesome/svgs/brands/dochub.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/docker.svg b/public/fontawesome/svgs/brands/docker.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/docker.svg rename to public/fontawesome/svgs/brands/docker.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/draft2digital.svg b/public/fontawesome/svgs/brands/draft2digital.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/draft2digital.svg rename to public/fontawesome/svgs/brands/draft2digital.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/dribbble-square.svg b/public/fontawesome/svgs/brands/dribbble-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/dribbble-square.svg rename to public/fontawesome/svgs/brands/dribbble-square.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/dribbble.svg b/public/fontawesome/svgs/brands/dribbble.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/dribbble.svg rename to public/fontawesome/svgs/brands/dribbble.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/dropbox.svg b/public/fontawesome/svgs/brands/dropbox.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/dropbox.svg rename to public/fontawesome/svgs/brands/dropbox.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/drupal.svg b/public/fontawesome/svgs/brands/drupal.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/drupal.svg rename to public/fontawesome/svgs/brands/drupal.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/dyalog.svg b/public/fontawesome/svgs/brands/dyalog.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/dyalog.svg rename to public/fontawesome/svgs/brands/dyalog.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/earlybirds.svg b/public/fontawesome/svgs/brands/earlybirds.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/earlybirds.svg rename to public/fontawesome/svgs/brands/earlybirds.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/ebay.svg b/public/fontawesome/svgs/brands/ebay.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/ebay.svg rename to public/fontawesome/svgs/brands/ebay.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/edge.svg b/public/fontawesome/svgs/brands/edge.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/edge.svg rename to public/fontawesome/svgs/brands/edge.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/elementor.svg b/public/fontawesome/svgs/brands/elementor.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/elementor.svg rename to public/fontawesome/svgs/brands/elementor.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/ello.svg b/public/fontawesome/svgs/brands/ello.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/ello.svg rename to public/fontawesome/svgs/brands/ello.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/ember.svg b/public/fontawesome/svgs/brands/ember.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/ember.svg rename to public/fontawesome/svgs/brands/ember.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/empire.svg b/public/fontawesome/svgs/brands/empire.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/empire.svg rename to public/fontawesome/svgs/brands/empire.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/envira.svg b/public/fontawesome/svgs/brands/envira.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/envira.svg rename to public/fontawesome/svgs/brands/envira.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/erlang.svg b/public/fontawesome/svgs/brands/erlang.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/erlang.svg rename to public/fontawesome/svgs/brands/erlang.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/ethereum.svg b/public/fontawesome/svgs/brands/ethereum.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/ethereum.svg rename to public/fontawesome/svgs/brands/ethereum.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/etsy.svg b/public/fontawesome/svgs/brands/etsy.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/etsy.svg rename to public/fontawesome/svgs/brands/etsy.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/expeditedssl.svg b/public/fontawesome/svgs/brands/expeditedssl.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/expeditedssl.svg rename to public/fontawesome/svgs/brands/expeditedssl.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/facebook-f.svg b/public/fontawesome/svgs/brands/facebook-f.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/facebook-f.svg rename to public/fontawesome/svgs/brands/facebook-f.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/facebook-messenger.svg b/public/fontawesome/svgs/brands/facebook-messenger.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/facebook-messenger.svg rename to public/fontawesome/svgs/brands/facebook-messenger.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/facebook-square.svg b/public/fontawesome/svgs/brands/facebook-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/facebook-square.svg rename to public/fontawesome/svgs/brands/facebook-square.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/facebook.svg b/public/fontawesome/svgs/brands/facebook.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/facebook.svg rename to public/fontawesome/svgs/brands/facebook.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/firefox.svg b/public/fontawesome/svgs/brands/firefox.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/firefox.svg rename to public/fontawesome/svgs/brands/firefox.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/first-order-alt.svg b/public/fontawesome/svgs/brands/first-order-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/first-order-alt.svg rename to public/fontawesome/svgs/brands/first-order-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/first-order.svg b/public/fontawesome/svgs/brands/first-order.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/first-order.svg rename to public/fontawesome/svgs/brands/first-order.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/firstdraft.svg b/public/fontawesome/svgs/brands/firstdraft.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/firstdraft.svg rename to public/fontawesome/svgs/brands/firstdraft.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/flickr.svg b/public/fontawesome/svgs/brands/flickr.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/flickr.svg rename to public/fontawesome/svgs/brands/flickr.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/flipboard.svg b/public/fontawesome/svgs/brands/flipboard.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/flipboard.svg rename to public/fontawesome/svgs/brands/flipboard.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/fly.svg b/public/fontawesome/svgs/brands/fly.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/fly.svg rename to public/fontawesome/svgs/brands/fly.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/font-awesome-alt.svg b/public/fontawesome/svgs/brands/font-awesome-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/font-awesome-alt.svg rename to public/fontawesome/svgs/brands/font-awesome-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/font-awesome-flag.svg b/public/fontawesome/svgs/brands/font-awesome-flag.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/font-awesome-flag.svg rename to public/fontawesome/svgs/brands/font-awesome-flag.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/font-awesome-logo-full.svg b/public/fontawesome/svgs/brands/font-awesome-logo-full.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/font-awesome-logo-full.svg rename to public/fontawesome/svgs/brands/font-awesome-logo-full.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/font-awesome.svg b/public/fontawesome/svgs/brands/font-awesome.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/font-awesome.svg rename to public/fontawesome/svgs/brands/font-awesome.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/fonticons-fi.svg b/public/fontawesome/svgs/brands/fonticons-fi.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/fonticons-fi.svg rename to public/fontawesome/svgs/brands/fonticons-fi.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/fonticons.svg b/public/fontawesome/svgs/brands/fonticons.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/fonticons.svg rename to public/fontawesome/svgs/brands/fonticons.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/fort-awesome-alt.svg b/public/fontawesome/svgs/brands/fort-awesome-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/fort-awesome-alt.svg rename to public/fontawesome/svgs/brands/fort-awesome-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/fort-awesome.svg b/public/fontawesome/svgs/brands/fort-awesome.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/fort-awesome.svg rename to public/fontawesome/svgs/brands/fort-awesome.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/forumbee.svg b/public/fontawesome/svgs/brands/forumbee.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/forumbee.svg rename to public/fontawesome/svgs/brands/forumbee.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/foursquare.svg b/public/fontawesome/svgs/brands/foursquare.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/foursquare.svg rename to public/fontawesome/svgs/brands/foursquare.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/free-code-camp.svg b/public/fontawesome/svgs/brands/free-code-camp.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/free-code-camp.svg rename to public/fontawesome/svgs/brands/free-code-camp.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/freebsd.svg b/public/fontawesome/svgs/brands/freebsd.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/freebsd.svg rename to public/fontawesome/svgs/brands/freebsd.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/fulcrum.svg b/public/fontawesome/svgs/brands/fulcrum.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/fulcrum.svg rename to public/fontawesome/svgs/brands/fulcrum.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/galactic-republic.svg b/public/fontawesome/svgs/brands/galactic-republic.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/galactic-republic.svg rename to public/fontawesome/svgs/brands/galactic-republic.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/galactic-senate.svg b/public/fontawesome/svgs/brands/galactic-senate.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/galactic-senate.svg rename to public/fontawesome/svgs/brands/galactic-senate.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/get-pocket.svg b/public/fontawesome/svgs/brands/get-pocket.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/get-pocket.svg rename to public/fontawesome/svgs/brands/get-pocket.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/gg-circle.svg b/public/fontawesome/svgs/brands/gg-circle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/gg-circle.svg rename to public/fontawesome/svgs/brands/gg-circle.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/gg.svg b/public/fontawesome/svgs/brands/gg.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/gg.svg rename to public/fontawesome/svgs/brands/gg.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/git-square.svg b/public/fontawesome/svgs/brands/git-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/git-square.svg rename to public/fontawesome/svgs/brands/git-square.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/git.svg b/public/fontawesome/svgs/brands/git.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/git.svg rename to public/fontawesome/svgs/brands/git.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/github-alt.svg b/public/fontawesome/svgs/brands/github-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/github-alt.svg rename to public/fontawesome/svgs/brands/github-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/github-square.svg b/public/fontawesome/svgs/brands/github-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/github-square.svg rename to public/fontawesome/svgs/brands/github-square.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/github.svg b/public/fontawesome/svgs/brands/github.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/github.svg rename to public/fontawesome/svgs/brands/github.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/gitkraken.svg b/public/fontawesome/svgs/brands/gitkraken.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/gitkraken.svg rename to public/fontawesome/svgs/brands/gitkraken.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/gitlab.svg b/public/fontawesome/svgs/brands/gitlab.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/gitlab.svg rename to public/fontawesome/svgs/brands/gitlab.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/gitter.svg b/public/fontawesome/svgs/brands/gitter.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/gitter.svg rename to public/fontawesome/svgs/brands/gitter.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/glide-g.svg b/public/fontawesome/svgs/brands/glide-g.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/glide-g.svg rename to public/fontawesome/svgs/brands/glide-g.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/glide.svg b/public/fontawesome/svgs/brands/glide.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/glide.svg rename to public/fontawesome/svgs/brands/glide.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/gofore.svg b/public/fontawesome/svgs/brands/gofore.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/gofore.svg rename to public/fontawesome/svgs/brands/gofore.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/goodreads-g.svg b/public/fontawesome/svgs/brands/goodreads-g.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/goodreads-g.svg rename to public/fontawesome/svgs/brands/goodreads-g.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/goodreads.svg b/public/fontawesome/svgs/brands/goodreads.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/goodreads.svg rename to public/fontawesome/svgs/brands/goodreads.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/google-drive.svg b/public/fontawesome/svgs/brands/google-drive.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/google-drive.svg rename to public/fontawesome/svgs/brands/google-drive.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/google-play.svg b/public/fontawesome/svgs/brands/google-play.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/google-play.svg rename to public/fontawesome/svgs/brands/google-play.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/google-plus-g.svg b/public/fontawesome/svgs/brands/google-plus-g.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/google-plus-g.svg rename to public/fontawesome/svgs/brands/google-plus-g.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/google-plus-square.svg b/public/fontawesome/svgs/brands/google-plus-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/google-plus-square.svg rename to public/fontawesome/svgs/brands/google-plus-square.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/google-plus.svg b/public/fontawesome/svgs/brands/google-plus.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/google-plus.svg rename to public/fontawesome/svgs/brands/google-plus.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/google-wallet.svg b/public/fontawesome/svgs/brands/google-wallet.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/google-wallet.svg rename to public/fontawesome/svgs/brands/google-wallet.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/google.svg b/public/fontawesome/svgs/brands/google.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/google.svg rename to public/fontawesome/svgs/brands/google.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/gratipay.svg b/public/fontawesome/svgs/brands/gratipay.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/gratipay.svg rename to public/fontawesome/svgs/brands/gratipay.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/grav.svg b/public/fontawesome/svgs/brands/grav.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/grav.svg rename to public/fontawesome/svgs/brands/grav.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/gripfire.svg b/public/fontawesome/svgs/brands/gripfire.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/gripfire.svg rename to public/fontawesome/svgs/brands/gripfire.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/grunt.svg b/public/fontawesome/svgs/brands/grunt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/grunt.svg rename to public/fontawesome/svgs/brands/grunt.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/gulp.svg b/public/fontawesome/svgs/brands/gulp.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/gulp.svg rename to public/fontawesome/svgs/brands/gulp.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/hacker-news-square.svg b/public/fontawesome/svgs/brands/hacker-news-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/hacker-news-square.svg rename to public/fontawesome/svgs/brands/hacker-news-square.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/hacker-news.svg b/public/fontawesome/svgs/brands/hacker-news.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/hacker-news.svg rename to public/fontawesome/svgs/brands/hacker-news.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/hackerrank.svg b/public/fontawesome/svgs/brands/hackerrank.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/hackerrank.svg rename to public/fontawesome/svgs/brands/hackerrank.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/hips.svg b/public/fontawesome/svgs/brands/hips.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/hips.svg rename to public/fontawesome/svgs/brands/hips.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/hire-a-helper.svg b/public/fontawesome/svgs/brands/hire-a-helper.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/hire-a-helper.svg rename to public/fontawesome/svgs/brands/hire-a-helper.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/hooli.svg b/public/fontawesome/svgs/brands/hooli.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/hooli.svg rename to public/fontawesome/svgs/brands/hooli.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/hornbill.svg b/public/fontawesome/svgs/brands/hornbill.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/hornbill.svg rename to public/fontawesome/svgs/brands/hornbill.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/hotjar.svg b/public/fontawesome/svgs/brands/hotjar.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/hotjar.svg rename to public/fontawesome/svgs/brands/hotjar.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/houzz.svg b/public/fontawesome/svgs/brands/houzz.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/houzz.svg rename to public/fontawesome/svgs/brands/houzz.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/html5.svg b/public/fontawesome/svgs/brands/html5.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/html5.svg rename to public/fontawesome/svgs/brands/html5.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/hubspot.svg b/public/fontawesome/svgs/brands/hubspot.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/hubspot.svg rename to public/fontawesome/svgs/brands/hubspot.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/imdb.svg b/public/fontawesome/svgs/brands/imdb.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/imdb.svg rename to public/fontawesome/svgs/brands/imdb.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/instagram.svg b/public/fontawesome/svgs/brands/instagram.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/instagram.svg rename to public/fontawesome/svgs/brands/instagram.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/internet-explorer.svg b/public/fontawesome/svgs/brands/internet-explorer.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/internet-explorer.svg rename to public/fontawesome/svgs/brands/internet-explorer.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/ioxhost.svg b/public/fontawesome/svgs/brands/ioxhost.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/ioxhost.svg rename to public/fontawesome/svgs/brands/ioxhost.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/itunes-note.svg b/public/fontawesome/svgs/brands/itunes-note.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/itunes-note.svg rename to public/fontawesome/svgs/brands/itunes-note.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/itunes.svg b/public/fontawesome/svgs/brands/itunes.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/itunes.svg rename to public/fontawesome/svgs/brands/itunes.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/java.svg b/public/fontawesome/svgs/brands/java.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/java.svg rename to public/fontawesome/svgs/brands/java.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/jedi-order.svg b/public/fontawesome/svgs/brands/jedi-order.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/jedi-order.svg rename to public/fontawesome/svgs/brands/jedi-order.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/jenkins.svg b/public/fontawesome/svgs/brands/jenkins.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/jenkins.svg rename to public/fontawesome/svgs/brands/jenkins.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/joget.svg b/public/fontawesome/svgs/brands/joget.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/joget.svg rename to public/fontawesome/svgs/brands/joget.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/joomla.svg b/public/fontawesome/svgs/brands/joomla.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/joomla.svg rename to public/fontawesome/svgs/brands/joomla.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/js-square.svg b/public/fontawesome/svgs/brands/js-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/js-square.svg rename to public/fontawesome/svgs/brands/js-square.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/js.svg b/public/fontawesome/svgs/brands/js.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/js.svg rename to public/fontawesome/svgs/brands/js.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/jsfiddle.svg b/public/fontawesome/svgs/brands/jsfiddle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/jsfiddle.svg rename to public/fontawesome/svgs/brands/jsfiddle.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/kaggle.svg b/public/fontawesome/svgs/brands/kaggle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/kaggle.svg rename to public/fontawesome/svgs/brands/kaggle.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/keybase.svg b/public/fontawesome/svgs/brands/keybase.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/keybase.svg rename to public/fontawesome/svgs/brands/keybase.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/keycdn.svg b/public/fontawesome/svgs/brands/keycdn.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/keycdn.svg rename to public/fontawesome/svgs/brands/keycdn.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/kickstarter-k.svg b/public/fontawesome/svgs/brands/kickstarter-k.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/kickstarter-k.svg rename to public/fontawesome/svgs/brands/kickstarter-k.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/kickstarter.svg b/public/fontawesome/svgs/brands/kickstarter.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/kickstarter.svg rename to public/fontawesome/svgs/brands/kickstarter.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/korvue.svg b/public/fontawesome/svgs/brands/korvue.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/korvue.svg rename to public/fontawesome/svgs/brands/korvue.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/laravel.svg b/public/fontawesome/svgs/brands/laravel.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/laravel.svg rename to public/fontawesome/svgs/brands/laravel.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/lastfm-square.svg b/public/fontawesome/svgs/brands/lastfm-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/lastfm-square.svg rename to public/fontawesome/svgs/brands/lastfm-square.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/lastfm.svg b/public/fontawesome/svgs/brands/lastfm.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/lastfm.svg rename to public/fontawesome/svgs/brands/lastfm.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/leanpub.svg b/public/fontawesome/svgs/brands/leanpub.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/leanpub.svg rename to public/fontawesome/svgs/brands/leanpub.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/less.svg b/public/fontawesome/svgs/brands/less.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/less.svg rename to public/fontawesome/svgs/brands/less.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/line.svg b/public/fontawesome/svgs/brands/line.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/line.svg rename to public/fontawesome/svgs/brands/line.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/linkedin-in.svg b/public/fontawesome/svgs/brands/linkedin-in.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/linkedin-in.svg rename to public/fontawesome/svgs/brands/linkedin-in.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/linkedin.svg b/public/fontawesome/svgs/brands/linkedin.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/linkedin.svg rename to public/fontawesome/svgs/brands/linkedin.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/linode.svg b/public/fontawesome/svgs/brands/linode.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/linode.svg rename to public/fontawesome/svgs/brands/linode.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/linux.svg b/public/fontawesome/svgs/brands/linux.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/linux.svg rename to public/fontawesome/svgs/brands/linux.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/lyft.svg b/public/fontawesome/svgs/brands/lyft.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/lyft.svg rename to public/fontawesome/svgs/brands/lyft.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/magento.svg b/public/fontawesome/svgs/brands/magento.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/magento.svg rename to public/fontawesome/svgs/brands/magento.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/mailchimp.svg b/public/fontawesome/svgs/brands/mailchimp.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/mailchimp.svg rename to public/fontawesome/svgs/brands/mailchimp.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/mandalorian.svg b/public/fontawesome/svgs/brands/mandalorian.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/mandalorian.svg rename to public/fontawesome/svgs/brands/mandalorian.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/markdown.svg b/public/fontawesome/svgs/brands/markdown.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/markdown.svg rename to public/fontawesome/svgs/brands/markdown.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/mastodon.svg b/public/fontawesome/svgs/brands/mastodon.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/mastodon.svg rename to public/fontawesome/svgs/brands/mastodon.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/maxcdn.svg b/public/fontawesome/svgs/brands/maxcdn.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/maxcdn.svg rename to public/fontawesome/svgs/brands/maxcdn.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/medapps.svg b/public/fontawesome/svgs/brands/medapps.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/medapps.svg rename to public/fontawesome/svgs/brands/medapps.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/medium-m.svg b/public/fontawesome/svgs/brands/medium-m.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/medium-m.svg rename to public/fontawesome/svgs/brands/medium-m.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/medium.svg b/public/fontawesome/svgs/brands/medium.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/medium.svg rename to public/fontawesome/svgs/brands/medium.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/medrt.svg b/public/fontawesome/svgs/brands/medrt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/medrt.svg rename to public/fontawesome/svgs/brands/medrt.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/meetup.svg b/public/fontawesome/svgs/brands/meetup.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/meetup.svg rename to public/fontawesome/svgs/brands/meetup.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/megaport.svg b/public/fontawesome/svgs/brands/megaport.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/megaport.svg rename to public/fontawesome/svgs/brands/megaport.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/microsoft.svg b/public/fontawesome/svgs/brands/microsoft.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/microsoft.svg rename to public/fontawesome/svgs/brands/microsoft.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/mix.svg b/public/fontawesome/svgs/brands/mix.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/mix.svg rename to public/fontawesome/svgs/brands/mix.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/mixcloud.svg b/public/fontawesome/svgs/brands/mixcloud.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/mixcloud.svg rename to public/fontawesome/svgs/brands/mixcloud.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/mizuni.svg b/public/fontawesome/svgs/brands/mizuni.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/mizuni.svg rename to public/fontawesome/svgs/brands/mizuni.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/modx.svg b/public/fontawesome/svgs/brands/modx.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/modx.svg rename to public/fontawesome/svgs/brands/modx.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/monero.svg b/public/fontawesome/svgs/brands/monero.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/monero.svg rename to public/fontawesome/svgs/brands/monero.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/napster.svg b/public/fontawesome/svgs/brands/napster.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/napster.svg rename to public/fontawesome/svgs/brands/napster.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/neos.svg b/public/fontawesome/svgs/brands/neos.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/neos.svg rename to public/fontawesome/svgs/brands/neos.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/nimblr.svg b/public/fontawesome/svgs/brands/nimblr.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/nimblr.svg rename to public/fontawesome/svgs/brands/nimblr.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/nintendo-switch.svg b/public/fontawesome/svgs/brands/nintendo-switch.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/nintendo-switch.svg rename to public/fontawesome/svgs/brands/nintendo-switch.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/node-js.svg b/public/fontawesome/svgs/brands/node-js.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/node-js.svg rename to public/fontawesome/svgs/brands/node-js.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/node.svg b/public/fontawesome/svgs/brands/node.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/node.svg rename to public/fontawesome/svgs/brands/node.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/npm.svg b/public/fontawesome/svgs/brands/npm.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/npm.svg rename to public/fontawesome/svgs/brands/npm.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/ns8.svg b/public/fontawesome/svgs/brands/ns8.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/ns8.svg rename to public/fontawesome/svgs/brands/ns8.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/nutritionix.svg b/public/fontawesome/svgs/brands/nutritionix.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/nutritionix.svg rename to public/fontawesome/svgs/brands/nutritionix.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/odnoklassniki-square.svg b/public/fontawesome/svgs/brands/odnoklassniki-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/odnoklassniki-square.svg rename to public/fontawesome/svgs/brands/odnoklassniki-square.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/odnoklassniki.svg b/public/fontawesome/svgs/brands/odnoklassniki.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/odnoklassniki.svg rename to public/fontawesome/svgs/brands/odnoklassniki.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/old-republic.svg b/public/fontawesome/svgs/brands/old-republic.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/old-republic.svg rename to public/fontawesome/svgs/brands/old-republic.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/opencart.svg b/public/fontawesome/svgs/brands/opencart.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/opencart.svg rename to public/fontawesome/svgs/brands/opencart.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/openid.svg b/public/fontawesome/svgs/brands/openid.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/openid.svg rename to public/fontawesome/svgs/brands/openid.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/opera.svg b/public/fontawesome/svgs/brands/opera.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/opera.svg rename to public/fontawesome/svgs/brands/opera.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/optin-monster.svg b/public/fontawesome/svgs/brands/optin-monster.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/optin-monster.svg rename to public/fontawesome/svgs/brands/optin-monster.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/osi.svg b/public/fontawesome/svgs/brands/osi.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/osi.svg rename to public/fontawesome/svgs/brands/osi.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/page4.svg b/public/fontawesome/svgs/brands/page4.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/page4.svg rename to public/fontawesome/svgs/brands/page4.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/pagelines.svg b/public/fontawesome/svgs/brands/pagelines.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/pagelines.svg rename to public/fontawesome/svgs/brands/pagelines.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/palfed.svg b/public/fontawesome/svgs/brands/palfed.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/palfed.svg rename to public/fontawesome/svgs/brands/palfed.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/patreon.svg b/public/fontawesome/svgs/brands/patreon.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/patreon.svg rename to public/fontawesome/svgs/brands/patreon.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/paypal.svg b/public/fontawesome/svgs/brands/paypal.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/paypal.svg rename to public/fontawesome/svgs/brands/paypal.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/periscope.svg b/public/fontawesome/svgs/brands/periscope.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/periscope.svg rename to public/fontawesome/svgs/brands/periscope.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/phabricator.svg b/public/fontawesome/svgs/brands/phabricator.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/phabricator.svg rename to public/fontawesome/svgs/brands/phabricator.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/phoenix-framework.svg b/public/fontawesome/svgs/brands/phoenix-framework.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/phoenix-framework.svg rename to public/fontawesome/svgs/brands/phoenix-framework.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/phoenix-squadron.svg b/public/fontawesome/svgs/brands/phoenix-squadron.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/phoenix-squadron.svg rename to public/fontawesome/svgs/brands/phoenix-squadron.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/php.svg b/public/fontawesome/svgs/brands/php.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/php.svg rename to public/fontawesome/svgs/brands/php.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/pied-piper-alt.svg b/public/fontawesome/svgs/brands/pied-piper-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/pied-piper-alt.svg rename to public/fontawesome/svgs/brands/pied-piper-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/pied-piper-hat.svg b/public/fontawesome/svgs/brands/pied-piper-hat.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/pied-piper-hat.svg rename to public/fontawesome/svgs/brands/pied-piper-hat.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/pied-piper-pp.svg b/public/fontawesome/svgs/brands/pied-piper-pp.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/pied-piper-pp.svg rename to public/fontawesome/svgs/brands/pied-piper-pp.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/pied-piper.svg b/public/fontawesome/svgs/brands/pied-piper.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/pied-piper.svg rename to public/fontawesome/svgs/brands/pied-piper.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/pinterest-p.svg b/public/fontawesome/svgs/brands/pinterest-p.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/pinterest-p.svg rename to public/fontawesome/svgs/brands/pinterest-p.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/pinterest-square.svg b/public/fontawesome/svgs/brands/pinterest-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/pinterest-square.svg rename to public/fontawesome/svgs/brands/pinterest-square.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/pinterest.svg b/public/fontawesome/svgs/brands/pinterest.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/pinterest.svg rename to public/fontawesome/svgs/brands/pinterest.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/playstation.svg b/public/fontawesome/svgs/brands/playstation.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/playstation.svg rename to public/fontawesome/svgs/brands/playstation.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/product-hunt.svg b/public/fontawesome/svgs/brands/product-hunt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/product-hunt.svg rename to public/fontawesome/svgs/brands/product-hunt.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/pushed.svg b/public/fontawesome/svgs/brands/pushed.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/pushed.svg rename to public/fontawesome/svgs/brands/pushed.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/python.svg b/public/fontawesome/svgs/brands/python.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/python.svg rename to public/fontawesome/svgs/brands/python.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/qq.svg b/public/fontawesome/svgs/brands/qq.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/qq.svg rename to public/fontawesome/svgs/brands/qq.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/quinscape.svg b/public/fontawesome/svgs/brands/quinscape.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/quinscape.svg rename to public/fontawesome/svgs/brands/quinscape.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/quora.svg b/public/fontawesome/svgs/brands/quora.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/quora.svg rename to public/fontawesome/svgs/brands/quora.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/r-project.svg b/public/fontawesome/svgs/brands/r-project.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/r-project.svg rename to public/fontawesome/svgs/brands/r-project.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/ravelry.svg b/public/fontawesome/svgs/brands/ravelry.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/ravelry.svg rename to public/fontawesome/svgs/brands/ravelry.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/react.svg b/public/fontawesome/svgs/brands/react.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/react.svg rename to public/fontawesome/svgs/brands/react.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/readme.svg b/public/fontawesome/svgs/brands/readme.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/readme.svg rename to public/fontawesome/svgs/brands/readme.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/rebel.svg b/public/fontawesome/svgs/brands/rebel.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/rebel.svg rename to public/fontawesome/svgs/brands/rebel.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/red-river.svg b/public/fontawesome/svgs/brands/red-river.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/red-river.svg rename to public/fontawesome/svgs/brands/red-river.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/reddit-alien.svg b/public/fontawesome/svgs/brands/reddit-alien.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/reddit-alien.svg rename to public/fontawesome/svgs/brands/reddit-alien.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/reddit-square.svg b/public/fontawesome/svgs/brands/reddit-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/reddit-square.svg rename to public/fontawesome/svgs/brands/reddit-square.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/reddit.svg b/public/fontawesome/svgs/brands/reddit.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/reddit.svg rename to public/fontawesome/svgs/brands/reddit.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/rendact.svg b/public/fontawesome/svgs/brands/rendact.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/rendact.svg rename to public/fontawesome/svgs/brands/rendact.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/renren.svg b/public/fontawesome/svgs/brands/renren.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/renren.svg rename to public/fontawesome/svgs/brands/renren.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/replyd.svg b/public/fontawesome/svgs/brands/replyd.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/replyd.svg rename to public/fontawesome/svgs/brands/replyd.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/researchgate.svg b/public/fontawesome/svgs/brands/researchgate.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/researchgate.svg rename to public/fontawesome/svgs/brands/researchgate.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/resolving.svg b/public/fontawesome/svgs/brands/resolving.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/resolving.svg rename to public/fontawesome/svgs/brands/resolving.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/rev.svg b/public/fontawesome/svgs/brands/rev.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/rev.svg rename to public/fontawesome/svgs/brands/rev.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/rocketchat.svg b/public/fontawesome/svgs/brands/rocketchat.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/rocketchat.svg rename to public/fontawesome/svgs/brands/rocketchat.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/rockrms.svg b/public/fontawesome/svgs/brands/rockrms.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/rockrms.svg rename to public/fontawesome/svgs/brands/rockrms.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/safari.svg b/public/fontawesome/svgs/brands/safari.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/safari.svg rename to public/fontawesome/svgs/brands/safari.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/sass.svg b/public/fontawesome/svgs/brands/sass.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/sass.svg rename to public/fontawesome/svgs/brands/sass.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/schlix.svg b/public/fontawesome/svgs/brands/schlix.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/schlix.svg rename to public/fontawesome/svgs/brands/schlix.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/scribd.svg b/public/fontawesome/svgs/brands/scribd.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/scribd.svg rename to public/fontawesome/svgs/brands/scribd.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/searchengin.svg b/public/fontawesome/svgs/brands/searchengin.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/searchengin.svg rename to public/fontawesome/svgs/brands/searchengin.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/sellcast.svg b/public/fontawesome/svgs/brands/sellcast.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/sellcast.svg rename to public/fontawesome/svgs/brands/sellcast.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/sellsy.svg b/public/fontawesome/svgs/brands/sellsy.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/sellsy.svg rename to public/fontawesome/svgs/brands/sellsy.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/servicestack.svg b/public/fontawesome/svgs/brands/servicestack.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/servicestack.svg rename to public/fontawesome/svgs/brands/servicestack.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/shirtsinbulk.svg b/public/fontawesome/svgs/brands/shirtsinbulk.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/shirtsinbulk.svg rename to public/fontawesome/svgs/brands/shirtsinbulk.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/shopware.svg b/public/fontawesome/svgs/brands/shopware.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/shopware.svg rename to public/fontawesome/svgs/brands/shopware.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/simplybuilt.svg b/public/fontawesome/svgs/brands/simplybuilt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/simplybuilt.svg rename to public/fontawesome/svgs/brands/simplybuilt.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/sistrix.svg b/public/fontawesome/svgs/brands/sistrix.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/sistrix.svg rename to public/fontawesome/svgs/brands/sistrix.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/sith.svg b/public/fontawesome/svgs/brands/sith.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/sith.svg rename to public/fontawesome/svgs/brands/sith.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/skyatlas.svg b/public/fontawesome/svgs/brands/skyatlas.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/skyatlas.svg rename to public/fontawesome/svgs/brands/skyatlas.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/skype.svg b/public/fontawesome/svgs/brands/skype.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/skype.svg rename to public/fontawesome/svgs/brands/skype.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/slack-hash.svg b/public/fontawesome/svgs/brands/slack-hash.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/slack-hash.svg rename to public/fontawesome/svgs/brands/slack-hash.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/slack.svg b/public/fontawesome/svgs/brands/slack.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/slack.svg rename to public/fontawesome/svgs/brands/slack.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/slideshare.svg b/public/fontawesome/svgs/brands/slideshare.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/slideshare.svg rename to public/fontawesome/svgs/brands/slideshare.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/snapchat-ghost.svg b/public/fontawesome/svgs/brands/snapchat-ghost.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/snapchat-ghost.svg rename to public/fontawesome/svgs/brands/snapchat-ghost.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/snapchat-square.svg b/public/fontawesome/svgs/brands/snapchat-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/snapchat-square.svg rename to public/fontawesome/svgs/brands/snapchat-square.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/snapchat.svg b/public/fontawesome/svgs/brands/snapchat.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/snapchat.svg rename to public/fontawesome/svgs/brands/snapchat.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/soundcloud.svg b/public/fontawesome/svgs/brands/soundcloud.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/soundcloud.svg rename to public/fontawesome/svgs/brands/soundcloud.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/speakap.svg b/public/fontawesome/svgs/brands/speakap.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/speakap.svg rename to public/fontawesome/svgs/brands/speakap.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/spotify.svg b/public/fontawesome/svgs/brands/spotify.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/spotify.svg rename to public/fontawesome/svgs/brands/spotify.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/squarespace.svg b/public/fontawesome/svgs/brands/squarespace.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/squarespace.svg rename to public/fontawesome/svgs/brands/squarespace.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/stack-exchange.svg b/public/fontawesome/svgs/brands/stack-exchange.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/stack-exchange.svg rename to public/fontawesome/svgs/brands/stack-exchange.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/stack-overflow.svg b/public/fontawesome/svgs/brands/stack-overflow.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/stack-overflow.svg rename to public/fontawesome/svgs/brands/stack-overflow.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/staylinked.svg b/public/fontawesome/svgs/brands/staylinked.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/staylinked.svg rename to public/fontawesome/svgs/brands/staylinked.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/steam-square.svg b/public/fontawesome/svgs/brands/steam-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/steam-square.svg rename to public/fontawesome/svgs/brands/steam-square.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/steam-symbol.svg b/public/fontawesome/svgs/brands/steam-symbol.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/steam-symbol.svg rename to public/fontawesome/svgs/brands/steam-symbol.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/steam.svg b/public/fontawesome/svgs/brands/steam.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/steam.svg rename to public/fontawesome/svgs/brands/steam.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/sticker-mule.svg b/public/fontawesome/svgs/brands/sticker-mule.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/sticker-mule.svg rename to public/fontawesome/svgs/brands/sticker-mule.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/strava.svg b/public/fontawesome/svgs/brands/strava.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/strava.svg rename to public/fontawesome/svgs/brands/strava.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/stripe-s.svg b/public/fontawesome/svgs/brands/stripe-s.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/stripe-s.svg rename to public/fontawesome/svgs/brands/stripe-s.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/stripe.svg b/public/fontawesome/svgs/brands/stripe.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/stripe.svg rename to public/fontawesome/svgs/brands/stripe.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/studiovinari.svg b/public/fontawesome/svgs/brands/studiovinari.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/studiovinari.svg rename to public/fontawesome/svgs/brands/studiovinari.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/stumbleupon-circle.svg b/public/fontawesome/svgs/brands/stumbleupon-circle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/stumbleupon-circle.svg rename to public/fontawesome/svgs/brands/stumbleupon-circle.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/stumbleupon.svg b/public/fontawesome/svgs/brands/stumbleupon.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/stumbleupon.svg rename to public/fontawesome/svgs/brands/stumbleupon.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/superpowers.svg b/public/fontawesome/svgs/brands/superpowers.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/superpowers.svg rename to public/fontawesome/svgs/brands/superpowers.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/supple.svg b/public/fontawesome/svgs/brands/supple.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/supple.svg rename to public/fontawesome/svgs/brands/supple.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/teamspeak.svg b/public/fontawesome/svgs/brands/teamspeak.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/teamspeak.svg rename to public/fontawesome/svgs/brands/teamspeak.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/telegram-plane.svg b/public/fontawesome/svgs/brands/telegram-plane.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/telegram-plane.svg rename to public/fontawesome/svgs/brands/telegram-plane.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/telegram.svg b/public/fontawesome/svgs/brands/telegram.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/telegram.svg rename to public/fontawesome/svgs/brands/telegram.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/tencent-weibo.svg b/public/fontawesome/svgs/brands/tencent-weibo.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/tencent-weibo.svg rename to public/fontawesome/svgs/brands/tencent-weibo.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/the-red-yeti.svg b/public/fontawesome/svgs/brands/the-red-yeti.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/the-red-yeti.svg rename to public/fontawesome/svgs/brands/the-red-yeti.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/themeco.svg b/public/fontawesome/svgs/brands/themeco.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/themeco.svg rename to public/fontawesome/svgs/brands/themeco.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/themeisle.svg b/public/fontawesome/svgs/brands/themeisle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/themeisle.svg rename to public/fontawesome/svgs/brands/themeisle.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/trade-federation.svg b/public/fontawesome/svgs/brands/trade-federation.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/trade-federation.svg rename to public/fontawesome/svgs/brands/trade-federation.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/trello.svg b/public/fontawesome/svgs/brands/trello.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/trello.svg rename to public/fontawesome/svgs/brands/trello.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/tripadvisor.svg b/public/fontawesome/svgs/brands/tripadvisor.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/tripadvisor.svg rename to public/fontawesome/svgs/brands/tripadvisor.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/tumblr-square.svg b/public/fontawesome/svgs/brands/tumblr-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/tumblr-square.svg rename to public/fontawesome/svgs/brands/tumblr-square.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/tumblr.svg b/public/fontawesome/svgs/brands/tumblr.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/tumblr.svg rename to public/fontawesome/svgs/brands/tumblr.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/twitch.svg b/public/fontawesome/svgs/brands/twitch.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/twitch.svg rename to public/fontawesome/svgs/brands/twitch.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/twitter-square.svg b/public/fontawesome/svgs/brands/twitter-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/twitter-square.svg rename to public/fontawesome/svgs/brands/twitter-square.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/twitter.svg b/public/fontawesome/svgs/brands/twitter.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/twitter.svg rename to public/fontawesome/svgs/brands/twitter.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/typo3.svg b/public/fontawesome/svgs/brands/typo3.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/typo3.svg rename to public/fontawesome/svgs/brands/typo3.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/uber.svg b/public/fontawesome/svgs/brands/uber.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/uber.svg rename to public/fontawesome/svgs/brands/uber.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/uikit.svg b/public/fontawesome/svgs/brands/uikit.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/uikit.svg rename to public/fontawesome/svgs/brands/uikit.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/uniregistry.svg b/public/fontawesome/svgs/brands/uniregistry.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/uniregistry.svg rename to public/fontawesome/svgs/brands/uniregistry.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/untappd.svg b/public/fontawesome/svgs/brands/untappd.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/untappd.svg rename to public/fontawesome/svgs/brands/untappd.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/usb.svg b/public/fontawesome/svgs/brands/usb.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/usb.svg rename to public/fontawesome/svgs/brands/usb.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/ussunnah.svg b/public/fontawesome/svgs/brands/ussunnah.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/ussunnah.svg rename to public/fontawesome/svgs/brands/ussunnah.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/vaadin.svg b/public/fontawesome/svgs/brands/vaadin.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/vaadin.svg rename to public/fontawesome/svgs/brands/vaadin.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/viacoin.svg b/public/fontawesome/svgs/brands/viacoin.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/viacoin.svg rename to public/fontawesome/svgs/brands/viacoin.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/viadeo-square.svg b/public/fontawesome/svgs/brands/viadeo-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/viadeo-square.svg rename to public/fontawesome/svgs/brands/viadeo-square.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/viadeo.svg b/public/fontawesome/svgs/brands/viadeo.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/viadeo.svg rename to public/fontawesome/svgs/brands/viadeo.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/viber.svg b/public/fontawesome/svgs/brands/viber.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/viber.svg rename to public/fontawesome/svgs/brands/viber.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/vimeo-square.svg b/public/fontawesome/svgs/brands/vimeo-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/vimeo-square.svg rename to public/fontawesome/svgs/brands/vimeo-square.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/vimeo-v.svg b/public/fontawesome/svgs/brands/vimeo-v.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/vimeo-v.svg rename to public/fontawesome/svgs/brands/vimeo-v.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/vimeo.svg b/public/fontawesome/svgs/brands/vimeo.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/vimeo.svg rename to public/fontawesome/svgs/brands/vimeo.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/vine.svg b/public/fontawesome/svgs/brands/vine.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/vine.svg rename to public/fontawesome/svgs/brands/vine.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/vk.svg b/public/fontawesome/svgs/brands/vk.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/vk.svg rename to public/fontawesome/svgs/brands/vk.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/vnv.svg b/public/fontawesome/svgs/brands/vnv.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/vnv.svg rename to public/fontawesome/svgs/brands/vnv.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/vuejs.svg b/public/fontawesome/svgs/brands/vuejs.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/vuejs.svg rename to public/fontawesome/svgs/brands/vuejs.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/weebly.svg b/public/fontawesome/svgs/brands/weebly.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/weebly.svg rename to public/fontawesome/svgs/brands/weebly.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/weibo.svg b/public/fontawesome/svgs/brands/weibo.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/weibo.svg rename to public/fontawesome/svgs/brands/weibo.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/weixin.svg b/public/fontawesome/svgs/brands/weixin.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/weixin.svg rename to public/fontawesome/svgs/brands/weixin.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/whatsapp-square.svg b/public/fontawesome/svgs/brands/whatsapp-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/whatsapp-square.svg rename to public/fontawesome/svgs/brands/whatsapp-square.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/whatsapp.svg b/public/fontawesome/svgs/brands/whatsapp.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/whatsapp.svg rename to public/fontawesome/svgs/brands/whatsapp.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/whmcs.svg b/public/fontawesome/svgs/brands/whmcs.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/whmcs.svg rename to public/fontawesome/svgs/brands/whmcs.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/wikipedia-w.svg b/public/fontawesome/svgs/brands/wikipedia-w.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/wikipedia-w.svg rename to public/fontawesome/svgs/brands/wikipedia-w.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/windows.svg b/public/fontawesome/svgs/brands/windows.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/windows.svg rename to public/fontawesome/svgs/brands/windows.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/wix.svg b/public/fontawesome/svgs/brands/wix.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/wix.svg rename to public/fontawesome/svgs/brands/wix.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/wolf-pack-battalion.svg b/public/fontawesome/svgs/brands/wolf-pack-battalion.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/wolf-pack-battalion.svg rename to public/fontawesome/svgs/brands/wolf-pack-battalion.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/wordpress-simple.svg b/public/fontawesome/svgs/brands/wordpress-simple.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/wordpress-simple.svg rename to public/fontawesome/svgs/brands/wordpress-simple.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/wordpress.svg b/public/fontawesome/svgs/brands/wordpress.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/wordpress.svg rename to public/fontawesome/svgs/brands/wordpress.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/wpbeginner.svg b/public/fontawesome/svgs/brands/wpbeginner.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/wpbeginner.svg rename to public/fontawesome/svgs/brands/wpbeginner.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/wpexplorer.svg b/public/fontawesome/svgs/brands/wpexplorer.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/wpexplorer.svg rename to public/fontawesome/svgs/brands/wpexplorer.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/wpforms.svg b/public/fontawesome/svgs/brands/wpforms.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/wpforms.svg rename to public/fontawesome/svgs/brands/wpforms.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/xbox.svg b/public/fontawesome/svgs/brands/xbox.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/xbox.svg rename to public/fontawesome/svgs/brands/xbox.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/xing-square.svg b/public/fontawesome/svgs/brands/xing-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/xing-square.svg rename to public/fontawesome/svgs/brands/xing-square.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/xing.svg b/public/fontawesome/svgs/brands/xing.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/xing.svg rename to public/fontawesome/svgs/brands/xing.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/y-combinator.svg b/public/fontawesome/svgs/brands/y-combinator.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/y-combinator.svg rename to public/fontawesome/svgs/brands/y-combinator.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/yahoo.svg b/public/fontawesome/svgs/brands/yahoo.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/yahoo.svg rename to public/fontawesome/svgs/brands/yahoo.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/yandex-international.svg b/public/fontawesome/svgs/brands/yandex-international.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/yandex-international.svg rename to public/fontawesome/svgs/brands/yandex-international.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/yandex.svg b/public/fontawesome/svgs/brands/yandex.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/yandex.svg rename to public/fontawesome/svgs/brands/yandex.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/yelp.svg b/public/fontawesome/svgs/brands/yelp.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/yelp.svg rename to public/fontawesome/svgs/brands/yelp.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/yoast.svg b/public/fontawesome/svgs/brands/yoast.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/yoast.svg rename to public/fontawesome/svgs/brands/yoast.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/youtube-square.svg b/public/fontawesome/svgs/brands/youtube-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/youtube-square.svg rename to public/fontawesome/svgs/brands/youtube-square.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/youtube.svg b/public/fontawesome/svgs/brands/youtube.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/youtube.svg rename to public/fontawesome/svgs/brands/youtube.svg diff --git a/src/Resources/public/fontawesome/svgs/brands/zhihu.svg b/public/fontawesome/svgs/brands/zhihu.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/brands/zhihu.svg rename to public/fontawesome/svgs/brands/zhihu.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/address-book.svg b/public/fontawesome/svgs/regular/address-book.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/address-book.svg rename to public/fontawesome/svgs/regular/address-book.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/address-card.svg b/public/fontawesome/svgs/regular/address-card.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/address-card.svg rename to public/fontawesome/svgs/regular/address-card.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/angry.svg b/public/fontawesome/svgs/regular/angry.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/angry.svg rename to public/fontawesome/svgs/regular/angry.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/arrow-alt-circle-down.svg b/public/fontawesome/svgs/regular/arrow-alt-circle-down.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/arrow-alt-circle-down.svg rename to public/fontawesome/svgs/regular/arrow-alt-circle-down.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/arrow-alt-circle-left.svg b/public/fontawesome/svgs/regular/arrow-alt-circle-left.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/arrow-alt-circle-left.svg rename to public/fontawesome/svgs/regular/arrow-alt-circle-left.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/arrow-alt-circle-right.svg b/public/fontawesome/svgs/regular/arrow-alt-circle-right.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/arrow-alt-circle-right.svg rename to public/fontawesome/svgs/regular/arrow-alt-circle-right.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/arrow-alt-circle-up.svg b/public/fontawesome/svgs/regular/arrow-alt-circle-up.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/arrow-alt-circle-up.svg rename to public/fontawesome/svgs/regular/arrow-alt-circle-up.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/bell-slash.svg b/public/fontawesome/svgs/regular/bell-slash.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/bell-slash.svg rename to public/fontawesome/svgs/regular/bell-slash.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/bell.svg b/public/fontawesome/svgs/regular/bell.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/bell.svg rename to public/fontawesome/svgs/regular/bell.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/bookmark.svg b/public/fontawesome/svgs/regular/bookmark.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/bookmark.svg rename to public/fontawesome/svgs/regular/bookmark.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/building.svg b/public/fontawesome/svgs/regular/building.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/building.svg rename to public/fontawesome/svgs/regular/building.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/calendar-alt.svg b/public/fontawesome/svgs/regular/calendar-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/calendar-alt.svg rename to public/fontawesome/svgs/regular/calendar-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/calendar-check.svg b/public/fontawesome/svgs/regular/calendar-check.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/calendar-check.svg rename to public/fontawesome/svgs/regular/calendar-check.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/calendar-minus.svg b/public/fontawesome/svgs/regular/calendar-minus.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/calendar-minus.svg rename to public/fontawesome/svgs/regular/calendar-minus.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/calendar-plus.svg b/public/fontawesome/svgs/regular/calendar-plus.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/calendar-plus.svg rename to public/fontawesome/svgs/regular/calendar-plus.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/calendar-times.svg b/public/fontawesome/svgs/regular/calendar-times.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/calendar-times.svg rename to public/fontawesome/svgs/regular/calendar-times.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/calendar.svg b/public/fontawesome/svgs/regular/calendar.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/calendar.svg rename to public/fontawesome/svgs/regular/calendar.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/caret-square-down.svg b/public/fontawesome/svgs/regular/caret-square-down.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/caret-square-down.svg rename to public/fontawesome/svgs/regular/caret-square-down.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/caret-square-left.svg b/public/fontawesome/svgs/regular/caret-square-left.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/caret-square-left.svg rename to public/fontawesome/svgs/regular/caret-square-left.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/caret-square-right.svg b/public/fontawesome/svgs/regular/caret-square-right.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/caret-square-right.svg rename to public/fontawesome/svgs/regular/caret-square-right.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/caret-square-up.svg b/public/fontawesome/svgs/regular/caret-square-up.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/caret-square-up.svg rename to public/fontawesome/svgs/regular/caret-square-up.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/chart-bar.svg b/public/fontawesome/svgs/regular/chart-bar.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/chart-bar.svg rename to public/fontawesome/svgs/regular/chart-bar.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/check-circle.svg b/public/fontawesome/svgs/regular/check-circle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/check-circle.svg rename to public/fontawesome/svgs/regular/check-circle.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/check-square.svg b/public/fontawesome/svgs/regular/check-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/check-square.svg rename to public/fontawesome/svgs/regular/check-square.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/circle.svg b/public/fontawesome/svgs/regular/circle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/circle.svg rename to public/fontawesome/svgs/regular/circle.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/clipboard.svg b/public/fontawesome/svgs/regular/clipboard.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/clipboard.svg rename to public/fontawesome/svgs/regular/clipboard.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/clock.svg b/public/fontawesome/svgs/regular/clock.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/clock.svg rename to public/fontawesome/svgs/regular/clock.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/clone.svg b/public/fontawesome/svgs/regular/clone.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/clone.svg rename to public/fontawesome/svgs/regular/clone.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/closed-captioning.svg b/public/fontawesome/svgs/regular/closed-captioning.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/closed-captioning.svg rename to public/fontawesome/svgs/regular/closed-captioning.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/comment-alt.svg b/public/fontawesome/svgs/regular/comment-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/comment-alt.svg rename to public/fontawesome/svgs/regular/comment-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/comment-dots.svg b/public/fontawesome/svgs/regular/comment-dots.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/comment-dots.svg rename to public/fontawesome/svgs/regular/comment-dots.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/comment.svg b/public/fontawesome/svgs/regular/comment.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/comment.svg rename to public/fontawesome/svgs/regular/comment.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/comments.svg b/public/fontawesome/svgs/regular/comments.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/comments.svg rename to public/fontawesome/svgs/regular/comments.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/compass.svg b/public/fontawesome/svgs/regular/compass.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/compass.svg rename to public/fontawesome/svgs/regular/compass.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/copy.svg b/public/fontawesome/svgs/regular/copy.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/copy.svg rename to public/fontawesome/svgs/regular/copy.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/copyright.svg b/public/fontawesome/svgs/regular/copyright.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/copyright.svg rename to public/fontawesome/svgs/regular/copyright.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/credit-card.svg b/public/fontawesome/svgs/regular/credit-card.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/credit-card.svg rename to public/fontawesome/svgs/regular/credit-card.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/dizzy.svg b/public/fontawesome/svgs/regular/dizzy.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/dizzy.svg rename to public/fontawesome/svgs/regular/dizzy.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/dot-circle.svg b/public/fontawesome/svgs/regular/dot-circle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/dot-circle.svg rename to public/fontawesome/svgs/regular/dot-circle.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/edit.svg b/public/fontawesome/svgs/regular/edit.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/edit.svg rename to public/fontawesome/svgs/regular/edit.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/envelope-open.svg b/public/fontawesome/svgs/regular/envelope-open.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/envelope-open.svg rename to public/fontawesome/svgs/regular/envelope-open.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/envelope.svg b/public/fontawesome/svgs/regular/envelope.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/envelope.svg rename to public/fontawesome/svgs/regular/envelope.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/eye-slash.svg b/public/fontawesome/svgs/regular/eye-slash.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/eye-slash.svg rename to public/fontawesome/svgs/regular/eye-slash.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/eye.svg b/public/fontawesome/svgs/regular/eye.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/eye.svg rename to public/fontawesome/svgs/regular/eye.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/file-alt.svg b/public/fontawesome/svgs/regular/file-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/file-alt.svg rename to public/fontawesome/svgs/regular/file-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/file-archive.svg b/public/fontawesome/svgs/regular/file-archive.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/file-archive.svg rename to public/fontawesome/svgs/regular/file-archive.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/file-audio.svg b/public/fontawesome/svgs/regular/file-audio.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/file-audio.svg rename to public/fontawesome/svgs/regular/file-audio.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/file-code.svg b/public/fontawesome/svgs/regular/file-code.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/file-code.svg rename to public/fontawesome/svgs/regular/file-code.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/file-excel.svg b/public/fontawesome/svgs/regular/file-excel.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/file-excel.svg rename to public/fontawesome/svgs/regular/file-excel.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/file-image.svg b/public/fontawesome/svgs/regular/file-image.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/file-image.svg rename to public/fontawesome/svgs/regular/file-image.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/file-pdf.svg b/public/fontawesome/svgs/regular/file-pdf.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/file-pdf.svg rename to public/fontawesome/svgs/regular/file-pdf.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/file-powerpoint.svg b/public/fontawesome/svgs/regular/file-powerpoint.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/file-powerpoint.svg rename to public/fontawesome/svgs/regular/file-powerpoint.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/file-video.svg b/public/fontawesome/svgs/regular/file-video.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/file-video.svg rename to public/fontawesome/svgs/regular/file-video.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/file-word.svg b/public/fontawesome/svgs/regular/file-word.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/file-word.svg rename to public/fontawesome/svgs/regular/file-word.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/file.svg b/public/fontawesome/svgs/regular/file.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/file.svg rename to public/fontawesome/svgs/regular/file.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/flag.svg b/public/fontawesome/svgs/regular/flag.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/flag.svg rename to public/fontawesome/svgs/regular/flag.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/flushed.svg b/public/fontawesome/svgs/regular/flushed.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/flushed.svg rename to public/fontawesome/svgs/regular/flushed.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/folder-open.svg b/public/fontawesome/svgs/regular/folder-open.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/folder-open.svg rename to public/fontawesome/svgs/regular/folder-open.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/folder.svg b/public/fontawesome/svgs/regular/folder.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/folder.svg rename to public/fontawesome/svgs/regular/folder.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/font-awesome-logo-full.svg b/public/fontawesome/svgs/regular/font-awesome-logo-full.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/font-awesome-logo-full.svg rename to public/fontawesome/svgs/regular/font-awesome-logo-full.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/frown-open.svg b/public/fontawesome/svgs/regular/frown-open.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/frown-open.svg rename to public/fontawesome/svgs/regular/frown-open.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/frown.svg b/public/fontawesome/svgs/regular/frown.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/frown.svg rename to public/fontawesome/svgs/regular/frown.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/futbol.svg b/public/fontawesome/svgs/regular/futbol.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/futbol.svg rename to public/fontawesome/svgs/regular/futbol.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/gem.svg b/public/fontawesome/svgs/regular/gem.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/gem.svg rename to public/fontawesome/svgs/regular/gem.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/grimace.svg b/public/fontawesome/svgs/regular/grimace.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/grimace.svg rename to public/fontawesome/svgs/regular/grimace.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/grin-alt.svg b/public/fontawesome/svgs/regular/grin-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/grin-alt.svg rename to public/fontawesome/svgs/regular/grin-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/grin-beam-sweat.svg b/public/fontawesome/svgs/regular/grin-beam-sweat.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/grin-beam-sweat.svg rename to public/fontawesome/svgs/regular/grin-beam-sweat.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/grin-beam.svg b/public/fontawesome/svgs/regular/grin-beam.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/grin-beam.svg rename to public/fontawesome/svgs/regular/grin-beam.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/grin-hearts.svg b/public/fontawesome/svgs/regular/grin-hearts.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/grin-hearts.svg rename to public/fontawesome/svgs/regular/grin-hearts.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/grin-squint-tears.svg b/public/fontawesome/svgs/regular/grin-squint-tears.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/grin-squint-tears.svg rename to public/fontawesome/svgs/regular/grin-squint-tears.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/grin-squint.svg b/public/fontawesome/svgs/regular/grin-squint.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/grin-squint.svg rename to public/fontawesome/svgs/regular/grin-squint.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/grin-stars.svg b/public/fontawesome/svgs/regular/grin-stars.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/grin-stars.svg rename to public/fontawesome/svgs/regular/grin-stars.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/grin-tears.svg b/public/fontawesome/svgs/regular/grin-tears.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/grin-tears.svg rename to public/fontawesome/svgs/regular/grin-tears.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/grin-tongue-squint.svg b/public/fontawesome/svgs/regular/grin-tongue-squint.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/grin-tongue-squint.svg rename to public/fontawesome/svgs/regular/grin-tongue-squint.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/grin-tongue-wink.svg b/public/fontawesome/svgs/regular/grin-tongue-wink.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/grin-tongue-wink.svg rename to public/fontawesome/svgs/regular/grin-tongue-wink.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/grin-tongue.svg b/public/fontawesome/svgs/regular/grin-tongue.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/grin-tongue.svg rename to public/fontawesome/svgs/regular/grin-tongue.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/grin-wink.svg b/public/fontawesome/svgs/regular/grin-wink.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/grin-wink.svg rename to public/fontawesome/svgs/regular/grin-wink.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/grin.svg b/public/fontawesome/svgs/regular/grin.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/grin.svg rename to public/fontawesome/svgs/regular/grin.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/hand-lizard.svg b/public/fontawesome/svgs/regular/hand-lizard.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/hand-lizard.svg rename to public/fontawesome/svgs/regular/hand-lizard.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/hand-paper.svg b/public/fontawesome/svgs/regular/hand-paper.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/hand-paper.svg rename to public/fontawesome/svgs/regular/hand-paper.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/hand-peace.svg b/public/fontawesome/svgs/regular/hand-peace.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/hand-peace.svg rename to public/fontawesome/svgs/regular/hand-peace.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/hand-point-down.svg b/public/fontawesome/svgs/regular/hand-point-down.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/hand-point-down.svg rename to public/fontawesome/svgs/regular/hand-point-down.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/hand-point-left.svg b/public/fontawesome/svgs/regular/hand-point-left.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/hand-point-left.svg rename to public/fontawesome/svgs/regular/hand-point-left.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/hand-point-right.svg b/public/fontawesome/svgs/regular/hand-point-right.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/hand-point-right.svg rename to public/fontawesome/svgs/regular/hand-point-right.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/hand-point-up.svg b/public/fontawesome/svgs/regular/hand-point-up.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/hand-point-up.svg rename to public/fontawesome/svgs/regular/hand-point-up.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/hand-pointer.svg b/public/fontawesome/svgs/regular/hand-pointer.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/hand-pointer.svg rename to public/fontawesome/svgs/regular/hand-pointer.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/hand-rock.svg b/public/fontawesome/svgs/regular/hand-rock.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/hand-rock.svg rename to public/fontawesome/svgs/regular/hand-rock.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/hand-scissors.svg b/public/fontawesome/svgs/regular/hand-scissors.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/hand-scissors.svg rename to public/fontawesome/svgs/regular/hand-scissors.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/hand-spock.svg b/public/fontawesome/svgs/regular/hand-spock.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/hand-spock.svg rename to public/fontawesome/svgs/regular/hand-spock.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/handshake.svg b/public/fontawesome/svgs/regular/handshake.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/handshake.svg rename to public/fontawesome/svgs/regular/handshake.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/hdd.svg b/public/fontawesome/svgs/regular/hdd.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/hdd.svg rename to public/fontawesome/svgs/regular/hdd.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/heart.svg b/public/fontawesome/svgs/regular/heart.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/heart.svg rename to public/fontawesome/svgs/regular/heart.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/hospital.svg b/public/fontawesome/svgs/regular/hospital.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/hospital.svg rename to public/fontawesome/svgs/regular/hospital.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/hourglass.svg b/public/fontawesome/svgs/regular/hourglass.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/hourglass.svg rename to public/fontawesome/svgs/regular/hourglass.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/id-badge.svg b/public/fontawesome/svgs/regular/id-badge.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/id-badge.svg rename to public/fontawesome/svgs/regular/id-badge.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/id-card.svg b/public/fontawesome/svgs/regular/id-card.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/id-card.svg rename to public/fontawesome/svgs/regular/id-card.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/image.svg b/public/fontawesome/svgs/regular/image.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/image.svg rename to public/fontawesome/svgs/regular/image.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/images.svg b/public/fontawesome/svgs/regular/images.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/images.svg rename to public/fontawesome/svgs/regular/images.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/keyboard.svg b/public/fontawesome/svgs/regular/keyboard.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/keyboard.svg rename to public/fontawesome/svgs/regular/keyboard.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/kiss-beam.svg b/public/fontawesome/svgs/regular/kiss-beam.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/kiss-beam.svg rename to public/fontawesome/svgs/regular/kiss-beam.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/kiss-wink-heart.svg b/public/fontawesome/svgs/regular/kiss-wink-heart.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/kiss-wink-heart.svg rename to public/fontawesome/svgs/regular/kiss-wink-heart.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/kiss.svg b/public/fontawesome/svgs/regular/kiss.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/kiss.svg rename to public/fontawesome/svgs/regular/kiss.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/laugh-beam.svg b/public/fontawesome/svgs/regular/laugh-beam.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/laugh-beam.svg rename to public/fontawesome/svgs/regular/laugh-beam.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/laugh-squint.svg b/public/fontawesome/svgs/regular/laugh-squint.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/laugh-squint.svg rename to public/fontawesome/svgs/regular/laugh-squint.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/laugh-wink.svg b/public/fontawesome/svgs/regular/laugh-wink.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/laugh-wink.svg rename to public/fontawesome/svgs/regular/laugh-wink.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/laugh.svg b/public/fontawesome/svgs/regular/laugh.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/laugh.svg rename to public/fontawesome/svgs/regular/laugh.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/lemon.svg b/public/fontawesome/svgs/regular/lemon.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/lemon.svg rename to public/fontawesome/svgs/regular/lemon.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/life-ring.svg b/public/fontawesome/svgs/regular/life-ring.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/life-ring.svg rename to public/fontawesome/svgs/regular/life-ring.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/lightbulb.svg b/public/fontawesome/svgs/regular/lightbulb.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/lightbulb.svg rename to public/fontawesome/svgs/regular/lightbulb.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/list-alt.svg b/public/fontawesome/svgs/regular/list-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/list-alt.svg rename to public/fontawesome/svgs/regular/list-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/map.svg b/public/fontawesome/svgs/regular/map.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/map.svg rename to public/fontawesome/svgs/regular/map.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/meh-blank.svg b/public/fontawesome/svgs/regular/meh-blank.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/meh-blank.svg rename to public/fontawesome/svgs/regular/meh-blank.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/meh-rolling-eyes.svg b/public/fontawesome/svgs/regular/meh-rolling-eyes.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/meh-rolling-eyes.svg rename to public/fontawesome/svgs/regular/meh-rolling-eyes.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/meh.svg b/public/fontawesome/svgs/regular/meh.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/meh.svg rename to public/fontawesome/svgs/regular/meh.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/minus-square.svg b/public/fontawesome/svgs/regular/minus-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/minus-square.svg rename to public/fontawesome/svgs/regular/minus-square.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/money-bill-alt.svg b/public/fontawesome/svgs/regular/money-bill-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/money-bill-alt.svg rename to public/fontawesome/svgs/regular/money-bill-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/moon.svg b/public/fontawesome/svgs/regular/moon.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/moon.svg rename to public/fontawesome/svgs/regular/moon.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/newspaper.svg b/public/fontawesome/svgs/regular/newspaper.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/newspaper.svg rename to public/fontawesome/svgs/regular/newspaper.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/object-group.svg b/public/fontawesome/svgs/regular/object-group.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/object-group.svg rename to public/fontawesome/svgs/regular/object-group.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/object-ungroup.svg b/public/fontawesome/svgs/regular/object-ungroup.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/object-ungroup.svg rename to public/fontawesome/svgs/regular/object-ungroup.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/paper-plane.svg b/public/fontawesome/svgs/regular/paper-plane.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/paper-plane.svg rename to public/fontawesome/svgs/regular/paper-plane.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/pause-circle.svg b/public/fontawesome/svgs/regular/pause-circle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/pause-circle.svg rename to public/fontawesome/svgs/regular/pause-circle.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/play-circle.svg b/public/fontawesome/svgs/regular/play-circle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/play-circle.svg rename to public/fontawesome/svgs/regular/play-circle.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/plus-square.svg b/public/fontawesome/svgs/regular/plus-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/plus-square.svg rename to public/fontawesome/svgs/regular/plus-square.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/question-circle.svg b/public/fontawesome/svgs/regular/question-circle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/question-circle.svg rename to public/fontawesome/svgs/regular/question-circle.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/registered.svg b/public/fontawesome/svgs/regular/registered.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/registered.svg rename to public/fontawesome/svgs/regular/registered.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/sad-cry.svg b/public/fontawesome/svgs/regular/sad-cry.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/sad-cry.svg rename to public/fontawesome/svgs/regular/sad-cry.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/sad-tear.svg b/public/fontawesome/svgs/regular/sad-tear.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/sad-tear.svg rename to public/fontawesome/svgs/regular/sad-tear.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/save.svg b/public/fontawesome/svgs/regular/save.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/save.svg rename to public/fontawesome/svgs/regular/save.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/share-square.svg b/public/fontawesome/svgs/regular/share-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/share-square.svg rename to public/fontawesome/svgs/regular/share-square.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/smile-beam.svg b/public/fontawesome/svgs/regular/smile-beam.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/smile-beam.svg rename to public/fontawesome/svgs/regular/smile-beam.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/smile-wink.svg b/public/fontawesome/svgs/regular/smile-wink.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/smile-wink.svg rename to public/fontawesome/svgs/regular/smile-wink.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/smile.svg b/public/fontawesome/svgs/regular/smile.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/smile.svg rename to public/fontawesome/svgs/regular/smile.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/snowflake.svg b/public/fontawesome/svgs/regular/snowflake.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/snowflake.svg rename to public/fontawesome/svgs/regular/snowflake.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/square.svg b/public/fontawesome/svgs/regular/square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/square.svg rename to public/fontawesome/svgs/regular/square.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/star-half.svg b/public/fontawesome/svgs/regular/star-half.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/star-half.svg rename to public/fontawesome/svgs/regular/star-half.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/star.svg b/public/fontawesome/svgs/regular/star.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/star.svg rename to public/fontawesome/svgs/regular/star.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/sticky-note.svg b/public/fontawesome/svgs/regular/sticky-note.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/sticky-note.svg rename to public/fontawesome/svgs/regular/sticky-note.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/stop-circle.svg b/public/fontawesome/svgs/regular/stop-circle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/stop-circle.svg rename to public/fontawesome/svgs/regular/stop-circle.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/sun.svg b/public/fontawesome/svgs/regular/sun.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/sun.svg rename to public/fontawesome/svgs/regular/sun.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/surprise.svg b/public/fontawesome/svgs/regular/surprise.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/surprise.svg rename to public/fontawesome/svgs/regular/surprise.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/thumbs-down.svg b/public/fontawesome/svgs/regular/thumbs-down.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/thumbs-down.svg rename to public/fontawesome/svgs/regular/thumbs-down.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/thumbs-up.svg b/public/fontawesome/svgs/regular/thumbs-up.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/thumbs-up.svg rename to public/fontawesome/svgs/regular/thumbs-up.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/times-circle.svg b/public/fontawesome/svgs/regular/times-circle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/times-circle.svg rename to public/fontawesome/svgs/regular/times-circle.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/tired.svg b/public/fontawesome/svgs/regular/tired.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/tired.svg rename to public/fontawesome/svgs/regular/tired.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/trash-alt.svg b/public/fontawesome/svgs/regular/trash-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/trash-alt.svg rename to public/fontawesome/svgs/regular/trash-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/user-circle.svg b/public/fontawesome/svgs/regular/user-circle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/user-circle.svg rename to public/fontawesome/svgs/regular/user-circle.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/user.svg b/public/fontawesome/svgs/regular/user.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/user.svg rename to public/fontawesome/svgs/regular/user.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/window-close.svg b/public/fontawesome/svgs/regular/window-close.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/window-close.svg rename to public/fontawesome/svgs/regular/window-close.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/window-maximize.svg b/public/fontawesome/svgs/regular/window-maximize.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/window-maximize.svg rename to public/fontawesome/svgs/regular/window-maximize.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/window-minimize.svg b/public/fontawesome/svgs/regular/window-minimize.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/window-minimize.svg rename to public/fontawesome/svgs/regular/window-minimize.svg diff --git a/src/Resources/public/fontawesome/svgs/regular/window-restore.svg b/public/fontawesome/svgs/regular/window-restore.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/regular/window-restore.svg rename to public/fontawesome/svgs/regular/window-restore.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/ad.svg b/public/fontawesome/svgs/solid/ad.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/ad.svg rename to public/fontawesome/svgs/solid/ad.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/address-book.svg b/public/fontawesome/svgs/solid/address-book.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/address-book.svg rename to public/fontawesome/svgs/solid/address-book.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/address-card.svg b/public/fontawesome/svgs/solid/address-card.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/address-card.svg rename to public/fontawesome/svgs/solid/address-card.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/adjust.svg b/public/fontawesome/svgs/solid/adjust.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/adjust.svg rename to public/fontawesome/svgs/solid/adjust.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/air-freshener.svg b/public/fontawesome/svgs/solid/air-freshener.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/air-freshener.svg rename to public/fontawesome/svgs/solid/air-freshener.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/align-center.svg b/public/fontawesome/svgs/solid/align-center.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/align-center.svg rename to public/fontawesome/svgs/solid/align-center.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/align-justify.svg b/public/fontawesome/svgs/solid/align-justify.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/align-justify.svg rename to public/fontawesome/svgs/solid/align-justify.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/align-left.svg b/public/fontawesome/svgs/solid/align-left.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/align-left.svg rename to public/fontawesome/svgs/solid/align-left.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/align-right.svg b/public/fontawesome/svgs/solid/align-right.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/align-right.svg rename to public/fontawesome/svgs/solid/align-right.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/allergies.svg b/public/fontawesome/svgs/solid/allergies.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/allergies.svg rename to public/fontawesome/svgs/solid/allergies.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/ambulance.svg b/public/fontawesome/svgs/solid/ambulance.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/ambulance.svg rename to public/fontawesome/svgs/solid/ambulance.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/american-sign-language-interpreting.svg b/public/fontawesome/svgs/solid/american-sign-language-interpreting.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/american-sign-language-interpreting.svg rename to public/fontawesome/svgs/solid/american-sign-language-interpreting.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/anchor.svg b/public/fontawesome/svgs/solid/anchor.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/anchor.svg rename to public/fontawesome/svgs/solid/anchor.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/angle-double-down.svg b/public/fontawesome/svgs/solid/angle-double-down.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/angle-double-down.svg rename to public/fontawesome/svgs/solid/angle-double-down.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/angle-double-left.svg b/public/fontawesome/svgs/solid/angle-double-left.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/angle-double-left.svg rename to public/fontawesome/svgs/solid/angle-double-left.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/angle-double-right.svg b/public/fontawesome/svgs/solid/angle-double-right.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/angle-double-right.svg rename to public/fontawesome/svgs/solid/angle-double-right.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/angle-double-up.svg b/public/fontawesome/svgs/solid/angle-double-up.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/angle-double-up.svg rename to public/fontawesome/svgs/solid/angle-double-up.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/angle-down.svg b/public/fontawesome/svgs/solid/angle-down.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/angle-down.svg rename to public/fontawesome/svgs/solid/angle-down.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/angle-left.svg b/public/fontawesome/svgs/solid/angle-left.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/angle-left.svg rename to public/fontawesome/svgs/solid/angle-left.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/angle-right.svg b/public/fontawesome/svgs/solid/angle-right.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/angle-right.svg rename to public/fontawesome/svgs/solid/angle-right.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/angle-up.svg b/public/fontawesome/svgs/solid/angle-up.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/angle-up.svg rename to public/fontawesome/svgs/solid/angle-up.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/angry.svg b/public/fontawesome/svgs/solid/angry.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/angry.svg rename to public/fontawesome/svgs/solid/angry.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/ankh.svg b/public/fontawesome/svgs/solid/ankh.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/ankh.svg rename to public/fontawesome/svgs/solid/ankh.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/apple-alt.svg b/public/fontawesome/svgs/solid/apple-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/apple-alt.svg rename to public/fontawesome/svgs/solid/apple-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/archive.svg b/public/fontawesome/svgs/solid/archive.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/archive.svg rename to public/fontawesome/svgs/solid/archive.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/archway.svg b/public/fontawesome/svgs/solid/archway.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/archway.svg rename to public/fontawesome/svgs/solid/archway.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/arrow-alt-circle-down.svg b/public/fontawesome/svgs/solid/arrow-alt-circle-down.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/arrow-alt-circle-down.svg rename to public/fontawesome/svgs/solid/arrow-alt-circle-down.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/arrow-alt-circle-left.svg b/public/fontawesome/svgs/solid/arrow-alt-circle-left.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/arrow-alt-circle-left.svg rename to public/fontawesome/svgs/solid/arrow-alt-circle-left.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/arrow-alt-circle-right.svg b/public/fontawesome/svgs/solid/arrow-alt-circle-right.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/arrow-alt-circle-right.svg rename to public/fontawesome/svgs/solid/arrow-alt-circle-right.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/arrow-alt-circle-up.svg b/public/fontawesome/svgs/solid/arrow-alt-circle-up.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/arrow-alt-circle-up.svg rename to public/fontawesome/svgs/solid/arrow-alt-circle-up.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/arrow-circle-down.svg b/public/fontawesome/svgs/solid/arrow-circle-down.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/arrow-circle-down.svg rename to public/fontawesome/svgs/solid/arrow-circle-down.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/arrow-circle-left.svg b/public/fontawesome/svgs/solid/arrow-circle-left.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/arrow-circle-left.svg rename to public/fontawesome/svgs/solid/arrow-circle-left.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/arrow-circle-right.svg b/public/fontawesome/svgs/solid/arrow-circle-right.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/arrow-circle-right.svg rename to public/fontawesome/svgs/solid/arrow-circle-right.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/arrow-circle-up.svg b/public/fontawesome/svgs/solid/arrow-circle-up.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/arrow-circle-up.svg rename to public/fontawesome/svgs/solid/arrow-circle-up.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/arrow-down.svg b/public/fontawesome/svgs/solid/arrow-down.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/arrow-down.svg rename to public/fontawesome/svgs/solid/arrow-down.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/arrow-left.svg b/public/fontawesome/svgs/solid/arrow-left.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/arrow-left.svg rename to public/fontawesome/svgs/solid/arrow-left.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/arrow-right.svg b/public/fontawesome/svgs/solid/arrow-right.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/arrow-right.svg rename to public/fontawesome/svgs/solid/arrow-right.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/arrow-up.svg b/public/fontawesome/svgs/solid/arrow-up.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/arrow-up.svg rename to public/fontawesome/svgs/solid/arrow-up.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/arrows-alt-h.svg b/public/fontawesome/svgs/solid/arrows-alt-h.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/arrows-alt-h.svg rename to public/fontawesome/svgs/solid/arrows-alt-h.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/arrows-alt-v.svg b/public/fontawesome/svgs/solid/arrows-alt-v.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/arrows-alt-v.svg rename to public/fontawesome/svgs/solid/arrows-alt-v.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/arrows-alt.svg b/public/fontawesome/svgs/solid/arrows-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/arrows-alt.svg rename to public/fontawesome/svgs/solid/arrows-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/assistive-listening-systems.svg b/public/fontawesome/svgs/solid/assistive-listening-systems.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/assistive-listening-systems.svg rename to public/fontawesome/svgs/solid/assistive-listening-systems.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/asterisk.svg b/public/fontawesome/svgs/solid/asterisk.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/asterisk.svg rename to public/fontawesome/svgs/solid/asterisk.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/at.svg b/public/fontawesome/svgs/solid/at.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/at.svg rename to public/fontawesome/svgs/solid/at.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/atlas.svg b/public/fontawesome/svgs/solid/atlas.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/atlas.svg rename to public/fontawesome/svgs/solid/atlas.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/atom.svg b/public/fontawesome/svgs/solid/atom.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/atom.svg rename to public/fontawesome/svgs/solid/atom.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/audio-description.svg b/public/fontawesome/svgs/solid/audio-description.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/audio-description.svg rename to public/fontawesome/svgs/solid/audio-description.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/award.svg b/public/fontawesome/svgs/solid/award.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/award.svg rename to public/fontawesome/svgs/solid/award.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/backspace.svg b/public/fontawesome/svgs/solid/backspace.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/backspace.svg rename to public/fontawesome/svgs/solid/backspace.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/backward.svg b/public/fontawesome/svgs/solid/backward.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/backward.svg rename to public/fontawesome/svgs/solid/backward.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/balance-scale.svg b/public/fontawesome/svgs/solid/balance-scale.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/balance-scale.svg rename to public/fontawesome/svgs/solid/balance-scale.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/ban.svg b/public/fontawesome/svgs/solid/ban.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/ban.svg rename to public/fontawesome/svgs/solid/ban.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/band-aid.svg b/public/fontawesome/svgs/solid/band-aid.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/band-aid.svg rename to public/fontawesome/svgs/solid/band-aid.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/barcode.svg b/public/fontawesome/svgs/solid/barcode.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/barcode.svg rename to public/fontawesome/svgs/solid/barcode.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/bars.svg b/public/fontawesome/svgs/solid/bars.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/bars.svg rename to public/fontawesome/svgs/solid/bars.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/baseball-ball.svg b/public/fontawesome/svgs/solid/baseball-ball.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/baseball-ball.svg rename to public/fontawesome/svgs/solid/baseball-ball.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/basketball-ball.svg b/public/fontawesome/svgs/solid/basketball-ball.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/basketball-ball.svg rename to public/fontawesome/svgs/solid/basketball-ball.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/bath.svg b/public/fontawesome/svgs/solid/bath.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/bath.svg rename to public/fontawesome/svgs/solid/bath.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/battery-empty.svg b/public/fontawesome/svgs/solid/battery-empty.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/battery-empty.svg rename to public/fontawesome/svgs/solid/battery-empty.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/battery-full.svg b/public/fontawesome/svgs/solid/battery-full.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/battery-full.svg rename to public/fontawesome/svgs/solid/battery-full.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/battery-half.svg b/public/fontawesome/svgs/solid/battery-half.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/battery-half.svg rename to public/fontawesome/svgs/solid/battery-half.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/battery-quarter.svg b/public/fontawesome/svgs/solid/battery-quarter.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/battery-quarter.svg rename to public/fontawesome/svgs/solid/battery-quarter.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/battery-three-quarters.svg b/public/fontawesome/svgs/solid/battery-three-quarters.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/battery-three-quarters.svg rename to public/fontawesome/svgs/solid/battery-three-quarters.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/bed.svg b/public/fontawesome/svgs/solid/bed.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/bed.svg rename to public/fontawesome/svgs/solid/bed.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/beer.svg b/public/fontawesome/svgs/solid/beer.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/beer.svg rename to public/fontawesome/svgs/solid/beer.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/bell-slash.svg b/public/fontawesome/svgs/solid/bell-slash.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/bell-slash.svg rename to public/fontawesome/svgs/solid/bell-slash.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/bell.svg b/public/fontawesome/svgs/solid/bell.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/bell.svg rename to public/fontawesome/svgs/solid/bell.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/bezier-curve.svg b/public/fontawesome/svgs/solid/bezier-curve.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/bezier-curve.svg rename to public/fontawesome/svgs/solid/bezier-curve.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/bible.svg b/public/fontawesome/svgs/solid/bible.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/bible.svg rename to public/fontawesome/svgs/solid/bible.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/bicycle.svg b/public/fontawesome/svgs/solid/bicycle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/bicycle.svg rename to public/fontawesome/svgs/solid/bicycle.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/binoculars.svg b/public/fontawesome/svgs/solid/binoculars.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/binoculars.svg rename to public/fontawesome/svgs/solid/binoculars.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/birthday-cake.svg b/public/fontawesome/svgs/solid/birthday-cake.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/birthday-cake.svg rename to public/fontawesome/svgs/solid/birthday-cake.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/blender.svg b/public/fontawesome/svgs/solid/blender.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/blender.svg rename to public/fontawesome/svgs/solid/blender.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/blind.svg b/public/fontawesome/svgs/solid/blind.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/blind.svg rename to public/fontawesome/svgs/solid/blind.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/bold.svg b/public/fontawesome/svgs/solid/bold.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/bold.svg rename to public/fontawesome/svgs/solid/bold.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/bolt.svg b/public/fontawesome/svgs/solid/bolt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/bolt.svg rename to public/fontawesome/svgs/solid/bolt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/bomb.svg b/public/fontawesome/svgs/solid/bomb.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/bomb.svg rename to public/fontawesome/svgs/solid/bomb.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/bone.svg b/public/fontawesome/svgs/solid/bone.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/bone.svg rename to public/fontawesome/svgs/solid/bone.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/bong.svg b/public/fontawesome/svgs/solid/bong.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/bong.svg rename to public/fontawesome/svgs/solid/bong.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/book-open.svg b/public/fontawesome/svgs/solid/book-open.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/book-open.svg rename to public/fontawesome/svgs/solid/book-open.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/book-reader.svg b/public/fontawesome/svgs/solid/book-reader.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/book-reader.svg rename to public/fontawesome/svgs/solid/book-reader.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/book.svg b/public/fontawesome/svgs/solid/book.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/book.svg rename to public/fontawesome/svgs/solid/book.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/bookmark.svg b/public/fontawesome/svgs/solid/bookmark.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/bookmark.svg rename to public/fontawesome/svgs/solid/bookmark.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/bowling-ball.svg b/public/fontawesome/svgs/solid/bowling-ball.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/bowling-ball.svg rename to public/fontawesome/svgs/solid/bowling-ball.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/box-open.svg b/public/fontawesome/svgs/solid/box-open.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/box-open.svg rename to public/fontawesome/svgs/solid/box-open.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/box.svg b/public/fontawesome/svgs/solid/box.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/box.svg rename to public/fontawesome/svgs/solid/box.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/boxes.svg b/public/fontawesome/svgs/solid/boxes.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/boxes.svg rename to public/fontawesome/svgs/solid/boxes.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/braille.svg b/public/fontawesome/svgs/solid/braille.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/braille.svg rename to public/fontawesome/svgs/solid/braille.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/brain.svg b/public/fontawesome/svgs/solid/brain.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/brain.svg rename to public/fontawesome/svgs/solid/brain.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/briefcase-medical.svg b/public/fontawesome/svgs/solid/briefcase-medical.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/briefcase-medical.svg rename to public/fontawesome/svgs/solid/briefcase-medical.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/briefcase.svg b/public/fontawesome/svgs/solid/briefcase.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/briefcase.svg rename to public/fontawesome/svgs/solid/briefcase.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/broadcast-tower.svg b/public/fontawesome/svgs/solid/broadcast-tower.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/broadcast-tower.svg rename to public/fontawesome/svgs/solid/broadcast-tower.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/broom.svg b/public/fontawesome/svgs/solid/broom.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/broom.svg rename to public/fontawesome/svgs/solid/broom.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/brush.svg b/public/fontawesome/svgs/solid/brush.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/brush.svg rename to public/fontawesome/svgs/solid/brush.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/bug.svg b/public/fontawesome/svgs/solid/bug.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/bug.svg rename to public/fontawesome/svgs/solid/bug.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/building.svg b/public/fontawesome/svgs/solid/building.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/building.svg rename to public/fontawesome/svgs/solid/building.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/bullhorn.svg b/public/fontawesome/svgs/solid/bullhorn.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/bullhorn.svg rename to public/fontawesome/svgs/solid/bullhorn.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/bullseye.svg b/public/fontawesome/svgs/solid/bullseye.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/bullseye.svg rename to public/fontawesome/svgs/solid/bullseye.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/burn.svg b/public/fontawesome/svgs/solid/burn.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/burn.svg rename to public/fontawesome/svgs/solid/burn.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/bus-alt.svg b/public/fontawesome/svgs/solid/bus-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/bus-alt.svg rename to public/fontawesome/svgs/solid/bus-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/bus.svg b/public/fontawesome/svgs/solid/bus.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/bus.svg rename to public/fontawesome/svgs/solid/bus.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/business-time.svg b/public/fontawesome/svgs/solid/business-time.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/business-time.svg rename to public/fontawesome/svgs/solid/business-time.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/calculator.svg b/public/fontawesome/svgs/solid/calculator.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/calculator.svg rename to public/fontawesome/svgs/solid/calculator.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/calendar-alt.svg b/public/fontawesome/svgs/solid/calendar-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/calendar-alt.svg rename to public/fontawesome/svgs/solid/calendar-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/calendar-check.svg b/public/fontawesome/svgs/solid/calendar-check.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/calendar-check.svg rename to public/fontawesome/svgs/solid/calendar-check.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/calendar-minus.svg b/public/fontawesome/svgs/solid/calendar-minus.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/calendar-minus.svg rename to public/fontawesome/svgs/solid/calendar-minus.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/calendar-plus.svg b/public/fontawesome/svgs/solid/calendar-plus.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/calendar-plus.svg rename to public/fontawesome/svgs/solid/calendar-plus.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/calendar-times.svg b/public/fontawesome/svgs/solid/calendar-times.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/calendar-times.svg rename to public/fontawesome/svgs/solid/calendar-times.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/calendar.svg b/public/fontawesome/svgs/solid/calendar.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/calendar.svg rename to public/fontawesome/svgs/solid/calendar.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/camera-retro.svg b/public/fontawesome/svgs/solid/camera-retro.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/camera-retro.svg rename to public/fontawesome/svgs/solid/camera-retro.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/camera.svg b/public/fontawesome/svgs/solid/camera.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/camera.svg rename to public/fontawesome/svgs/solid/camera.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/cannabis.svg b/public/fontawesome/svgs/solid/cannabis.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/cannabis.svg rename to public/fontawesome/svgs/solid/cannabis.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/capsules.svg b/public/fontawesome/svgs/solid/capsules.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/capsules.svg rename to public/fontawesome/svgs/solid/capsules.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/car-alt.svg b/public/fontawesome/svgs/solid/car-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/car-alt.svg rename to public/fontawesome/svgs/solid/car-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/car-battery.svg b/public/fontawesome/svgs/solid/car-battery.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/car-battery.svg rename to public/fontawesome/svgs/solid/car-battery.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/car-crash.svg b/public/fontawesome/svgs/solid/car-crash.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/car-crash.svg rename to public/fontawesome/svgs/solid/car-crash.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/car-side.svg b/public/fontawesome/svgs/solid/car-side.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/car-side.svg rename to public/fontawesome/svgs/solid/car-side.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/car.svg b/public/fontawesome/svgs/solid/car.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/car.svg rename to public/fontawesome/svgs/solid/car.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/caret-down.svg b/public/fontawesome/svgs/solid/caret-down.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/caret-down.svg rename to public/fontawesome/svgs/solid/caret-down.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/caret-left.svg b/public/fontawesome/svgs/solid/caret-left.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/caret-left.svg rename to public/fontawesome/svgs/solid/caret-left.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/caret-right.svg b/public/fontawesome/svgs/solid/caret-right.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/caret-right.svg rename to public/fontawesome/svgs/solid/caret-right.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/caret-square-down.svg b/public/fontawesome/svgs/solid/caret-square-down.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/caret-square-down.svg rename to public/fontawesome/svgs/solid/caret-square-down.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/caret-square-left.svg b/public/fontawesome/svgs/solid/caret-square-left.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/caret-square-left.svg rename to public/fontawesome/svgs/solid/caret-square-left.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/caret-square-right.svg b/public/fontawesome/svgs/solid/caret-square-right.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/caret-square-right.svg rename to public/fontawesome/svgs/solid/caret-square-right.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/caret-square-up.svg b/public/fontawesome/svgs/solid/caret-square-up.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/caret-square-up.svg rename to public/fontawesome/svgs/solid/caret-square-up.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/caret-up.svg b/public/fontawesome/svgs/solid/caret-up.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/caret-up.svg rename to public/fontawesome/svgs/solid/caret-up.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/cart-arrow-down.svg b/public/fontawesome/svgs/solid/cart-arrow-down.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/cart-arrow-down.svg rename to public/fontawesome/svgs/solid/cart-arrow-down.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/cart-plus.svg b/public/fontawesome/svgs/solid/cart-plus.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/cart-plus.svg rename to public/fontawesome/svgs/solid/cart-plus.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/certificate.svg b/public/fontawesome/svgs/solid/certificate.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/certificate.svg rename to public/fontawesome/svgs/solid/certificate.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/chalkboard-teacher.svg b/public/fontawesome/svgs/solid/chalkboard-teacher.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/chalkboard-teacher.svg rename to public/fontawesome/svgs/solid/chalkboard-teacher.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/chalkboard.svg b/public/fontawesome/svgs/solid/chalkboard.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/chalkboard.svg rename to public/fontawesome/svgs/solid/chalkboard.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/charging-station.svg b/public/fontawesome/svgs/solid/charging-station.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/charging-station.svg rename to public/fontawesome/svgs/solid/charging-station.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/chart-area.svg b/public/fontawesome/svgs/solid/chart-area.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/chart-area.svg rename to public/fontawesome/svgs/solid/chart-area.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/chart-bar.svg b/public/fontawesome/svgs/solid/chart-bar.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/chart-bar.svg rename to public/fontawesome/svgs/solid/chart-bar.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/chart-line.svg b/public/fontawesome/svgs/solid/chart-line.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/chart-line.svg rename to public/fontawesome/svgs/solid/chart-line.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/chart-pie.svg b/public/fontawesome/svgs/solid/chart-pie.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/chart-pie.svg rename to public/fontawesome/svgs/solid/chart-pie.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/check-circle.svg b/public/fontawesome/svgs/solid/check-circle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/check-circle.svg rename to public/fontawesome/svgs/solid/check-circle.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/check-double.svg b/public/fontawesome/svgs/solid/check-double.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/check-double.svg rename to public/fontawesome/svgs/solid/check-double.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/check-square.svg b/public/fontawesome/svgs/solid/check-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/check-square.svg rename to public/fontawesome/svgs/solid/check-square.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/check.svg b/public/fontawesome/svgs/solid/check.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/check.svg rename to public/fontawesome/svgs/solid/check.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/chess-bishop.svg b/public/fontawesome/svgs/solid/chess-bishop.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/chess-bishop.svg rename to public/fontawesome/svgs/solid/chess-bishop.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/chess-board.svg b/public/fontawesome/svgs/solid/chess-board.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/chess-board.svg rename to public/fontawesome/svgs/solid/chess-board.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/chess-king.svg b/public/fontawesome/svgs/solid/chess-king.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/chess-king.svg rename to public/fontawesome/svgs/solid/chess-king.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/chess-knight.svg b/public/fontawesome/svgs/solid/chess-knight.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/chess-knight.svg rename to public/fontawesome/svgs/solid/chess-knight.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/chess-pawn.svg b/public/fontawesome/svgs/solid/chess-pawn.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/chess-pawn.svg rename to public/fontawesome/svgs/solid/chess-pawn.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/chess-queen.svg b/public/fontawesome/svgs/solid/chess-queen.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/chess-queen.svg rename to public/fontawesome/svgs/solid/chess-queen.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/chess-rook.svg b/public/fontawesome/svgs/solid/chess-rook.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/chess-rook.svg rename to public/fontawesome/svgs/solid/chess-rook.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/chess.svg b/public/fontawesome/svgs/solid/chess.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/chess.svg rename to public/fontawesome/svgs/solid/chess.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/chevron-circle-down.svg b/public/fontawesome/svgs/solid/chevron-circle-down.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/chevron-circle-down.svg rename to public/fontawesome/svgs/solid/chevron-circle-down.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/chevron-circle-left.svg b/public/fontawesome/svgs/solid/chevron-circle-left.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/chevron-circle-left.svg rename to public/fontawesome/svgs/solid/chevron-circle-left.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/chevron-circle-right.svg b/public/fontawesome/svgs/solid/chevron-circle-right.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/chevron-circle-right.svg rename to public/fontawesome/svgs/solid/chevron-circle-right.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/chevron-circle-up.svg b/public/fontawesome/svgs/solid/chevron-circle-up.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/chevron-circle-up.svg rename to public/fontawesome/svgs/solid/chevron-circle-up.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/chevron-down.svg b/public/fontawesome/svgs/solid/chevron-down.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/chevron-down.svg rename to public/fontawesome/svgs/solid/chevron-down.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/chevron-left.svg b/public/fontawesome/svgs/solid/chevron-left.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/chevron-left.svg rename to public/fontawesome/svgs/solid/chevron-left.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/chevron-right.svg b/public/fontawesome/svgs/solid/chevron-right.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/chevron-right.svg rename to public/fontawesome/svgs/solid/chevron-right.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/chevron-up.svg b/public/fontawesome/svgs/solid/chevron-up.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/chevron-up.svg rename to public/fontawesome/svgs/solid/chevron-up.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/child.svg b/public/fontawesome/svgs/solid/child.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/child.svg rename to public/fontawesome/svgs/solid/child.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/church.svg b/public/fontawesome/svgs/solid/church.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/church.svg rename to public/fontawesome/svgs/solid/church.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/circle-notch.svg b/public/fontawesome/svgs/solid/circle-notch.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/circle-notch.svg rename to public/fontawesome/svgs/solid/circle-notch.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/circle.svg b/public/fontawesome/svgs/solid/circle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/circle.svg rename to public/fontawesome/svgs/solid/circle.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/city.svg b/public/fontawesome/svgs/solid/city.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/city.svg rename to public/fontawesome/svgs/solid/city.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/clipboard-check.svg b/public/fontawesome/svgs/solid/clipboard-check.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/clipboard-check.svg rename to public/fontawesome/svgs/solid/clipboard-check.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/clipboard-list.svg b/public/fontawesome/svgs/solid/clipboard-list.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/clipboard-list.svg rename to public/fontawesome/svgs/solid/clipboard-list.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/clipboard.svg b/public/fontawesome/svgs/solid/clipboard.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/clipboard.svg rename to public/fontawesome/svgs/solid/clipboard.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/clock.svg b/public/fontawesome/svgs/solid/clock.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/clock.svg rename to public/fontawesome/svgs/solid/clock.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/clone.svg b/public/fontawesome/svgs/solid/clone.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/clone.svg rename to public/fontawesome/svgs/solid/clone.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/closed-captioning.svg b/public/fontawesome/svgs/solid/closed-captioning.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/closed-captioning.svg rename to public/fontawesome/svgs/solid/closed-captioning.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/cloud-download-alt.svg b/public/fontawesome/svgs/solid/cloud-download-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/cloud-download-alt.svg rename to public/fontawesome/svgs/solid/cloud-download-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/cloud-upload-alt.svg b/public/fontawesome/svgs/solid/cloud-upload-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/cloud-upload-alt.svg rename to public/fontawesome/svgs/solid/cloud-upload-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/cloud.svg b/public/fontawesome/svgs/solid/cloud.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/cloud.svg rename to public/fontawesome/svgs/solid/cloud.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/cocktail.svg b/public/fontawesome/svgs/solid/cocktail.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/cocktail.svg rename to public/fontawesome/svgs/solid/cocktail.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/code-branch.svg b/public/fontawesome/svgs/solid/code-branch.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/code-branch.svg rename to public/fontawesome/svgs/solid/code-branch.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/code.svg b/public/fontawesome/svgs/solid/code.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/code.svg rename to public/fontawesome/svgs/solid/code.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/coffee.svg b/public/fontawesome/svgs/solid/coffee.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/coffee.svg rename to public/fontawesome/svgs/solid/coffee.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/cog.svg b/public/fontawesome/svgs/solid/cog.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/cog.svg rename to public/fontawesome/svgs/solid/cog.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/cogs.svg b/public/fontawesome/svgs/solid/cogs.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/cogs.svg rename to public/fontawesome/svgs/solid/cogs.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/coins.svg b/public/fontawesome/svgs/solid/coins.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/coins.svg rename to public/fontawesome/svgs/solid/coins.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/columns.svg b/public/fontawesome/svgs/solid/columns.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/columns.svg rename to public/fontawesome/svgs/solid/columns.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/comment-alt.svg b/public/fontawesome/svgs/solid/comment-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/comment-alt.svg rename to public/fontawesome/svgs/solid/comment-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/comment-dollar.svg b/public/fontawesome/svgs/solid/comment-dollar.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/comment-dollar.svg rename to public/fontawesome/svgs/solid/comment-dollar.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/comment-dots.svg b/public/fontawesome/svgs/solid/comment-dots.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/comment-dots.svg rename to public/fontawesome/svgs/solid/comment-dots.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/comment-slash.svg b/public/fontawesome/svgs/solid/comment-slash.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/comment-slash.svg rename to public/fontawesome/svgs/solid/comment-slash.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/comment.svg b/public/fontawesome/svgs/solid/comment.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/comment.svg rename to public/fontawesome/svgs/solid/comment.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/comments-dollar.svg b/public/fontawesome/svgs/solid/comments-dollar.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/comments-dollar.svg rename to public/fontawesome/svgs/solid/comments-dollar.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/comments.svg b/public/fontawesome/svgs/solid/comments.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/comments.svg rename to public/fontawesome/svgs/solid/comments.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/compact-disc.svg b/public/fontawesome/svgs/solid/compact-disc.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/compact-disc.svg rename to public/fontawesome/svgs/solid/compact-disc.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/compass.svg b/public/fontawesome/svgs/solid/compass.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/compass.svg rename to public/fontawesome/svgs/solid/compass.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/compress.svg b/public/fontawesome/svgs/solid/compress.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/compress.svg rename to public/fontawesome/svgs/solid/compress.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/concierge-bell.svg b/public/fontawesome/svgs/solid/concierge-bell.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/concierge-bell.svg rename to public/fontawesome/svgs/solid/concierge-bell.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/cookie-bite.svg b/public/fontawesome/svgs/solid/cookie-bite.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/cookie-bite.svg rename to public/fontawesome/svgs/solid/cookie-bite.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/cookie.svg b/public/fontawesome/svgs/solid/cookie.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/cookie.svg rename to public/fontawesome/svgs/solid/cookie.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/copy.svg b/public/fontawesome/svgs/solid/copy.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/copy.svg rename to public/fontawesome/svgs/solid/copy.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/copyright.svg b/public/fontawesome/svgs/solid/copyright.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/copyright.svg rename to public/fontawesome/svgs/solid/copyright.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/couch.svg b/public/fontawesome/svgs/solid/couch.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/couch.svg rename to public/fontawesome/svgs/solid/couch.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/credit-card.svg b/public/fontawesome/svgs/solid/credit-card.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/credit-card.svg rename to public/fontawesome/svgs/solid/credit-card.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/crop-alt.svg b/public/fontawesome/svgs/solid/crop-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/crop-alt.svg rename to public/fontawesome/svgs/solid/crop-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/crop.svg b/public/fontawesome/svgs/solid/crop.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/crop.svg rename to public/fontawesome/svgs/solid/crop.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/cross.svg b/public/fontawesome/svgs/solid/cross.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/cross.svg rename to public/fontawesome/svgs/solid/cross.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/crosshairs.svg b/public/fontawesome/svgs/solid/crosshairs.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/crosshairs.svg rename to public/fontawesome/svgs/solid/crosshairs.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/crow.svg b/public/fontawesome/svgs/solid/crow.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/crow.svg rename to public/fontawesome/svgs/solid/crow.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/crown.svg b/public/fontawesome/svgs/solid/crown.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/crown.svg rename to public/fontawesome/svgs/solid/crown.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/cube.svg b/public/fontawesome/svgs/solid/cube.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/cube.svg rename to public/fontawesome/svgs/solid/cube.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/cubes.svg b/public/fontawesome/svgs/solid/cubes.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/cubes.svg rename to public/fontawesome/svgs/solid/cubes.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/cut.svg b/public/fontawesome/svgs/solid/cut.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/cut.svg rename to public/fontawesome/svgs/solid/cut.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/database.svg b/public/fontawesome/svgs/solid/database.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/database.svg rename to public/fontawesome/svgs/solid/database.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/deaf.svg b/public/fontawesome/svgs/solid/deaf.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/deaf.svg rename to public/fontawesome/svgs/solid/deaf.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/desktop.svg b/public/fontawesome/svgs/solid/desktop.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/desktop.svg rename to public/fontawesome/svgs/solid/desktop.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/dharmachakra.svg b/public/fontawesome/svgs/solid/dharmachakra.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/dharmachakra.svg rename to public/fontawesome/svgs/solid/dharmachakra.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/diagnoses.svg b/public/fontawesome/svgs/solid/diagnoses.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/diagnoses.svg rename to public/fontawesome/svgs/solid/diagnoses.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/dice-five.svg b/public/fontawesome/svgs/solid/dice-five.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/dice-five.svg rename to public/fontawesome/svgs/solid/dice-five.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/dice-four.svg b/public/fontawesome/svgs/solid/dice-four.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/dice-four.svg rename to public/fontawesome/svgs/solid/dice-four.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/dice-one.svg b/public/fontawesome/svgs/solid/dice-one.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/dice-one.svg rename to public/fontawesome/svgs/solid/dice-one.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/dice-six.svg b/public/fontawesome/svgs/solid/dice-six.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/dice-six.svg rename to public/fontawesome/svgs/solid/dice-six.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/dice-three.svg b/public/fontawesome/svgs/solid/dice-three.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/dice-three.svg rename to public/fontawesome/svgs/solid/dice-three.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/dice-two.svg b/public/fontawesome/svgs/solid/dice-two.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/dice-two.svg rename to public/fontawesome/svgs/solid/dice-two.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/dice.svg b/public/fontawesome/svgs/solid/dice.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/dice.svg rename to public/fontawesome/svgs/solid/dice.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/digital-tachograph.svg b/public/fontawesome/svgs/solid/digital-tachograph.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/digital-tachograph.svg rename to public/fontawesome/svgs/solid/digital-tachograph.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/directions.svg b/public/fontawesome/svgs/solid/directions.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/directions.svg rename to public/fontawesome/svgs/solid/directions.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/divide.svg b/public/fontawesome/svgs/solid/divide.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/divide.svg rename to public/fontawesome/svgs/solid/divide.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/dizzy.svg b/public/fontawesome/svgs/solid/dizzy.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/dizzy.svg rename to public/fontawesome/svgs/solid/dizzy.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/dna.svg b/public/fontawesome/svgs/solid/dna.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/dna.svg rename to public/fontawesome/svgs/solid/dna.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/dollar-sign.svg b/public/fontawesome/svgs/solid/dollar-sign.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/dollar-sign.svg rename to public/fontawesome/svgs/solid/dollar-sign.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/dolly-flatbed.svg b/public/fontawesome/svgs/solid/dolly-flatbed.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/dolly-flatbed.svg rename to public/fontawesome/svgs/solid/dolly-flatbed.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/dolly.svg b/public/fontawesome/svgs/solid/dolly.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/dolly.svg rename to public/fontawesome/svgs/solid/dolly.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/donate.svg b/public/fontawesome/svgs/solid/donate.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/donate.svg rename to public/fontawesome/svgs/solid/donate.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/door-closed.svg b/public/fontawesome/svgs/solid/door-closed.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/door-closed.svg rename to public/fontawesome/svgs/solid/door-closed.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/door-open.svg b/public/fontawesome/svgs/solid/door-open.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/door-open.svg rename to public/fontawesome/svgs/solid/door-open.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/dot-circle.svg b/public/fontawesome/svgs/solid/dot-circle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/dot-circle.svg rename to public/fontawesome/svgs/solid/dot-circle.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/dove.svg b/public/fontawesome/svgs/solid/dove.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/dove.svg rename to public/fontawesome/svgs/solid/dove.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/download.svg b/public/fontawesome/svgs/solid/download.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/download.svg rename to public/fontawesome/svgs/solid/download.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/drafting-compass.svg b/public/fontawesome/svgs/solid/drafting-compass.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/drafting-compass.svg rename to public/fontawesome/svgs/solid/drafting-compass.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/draw-polygon.svg b/public/fontawesome/svgs/solid/draw-polygon.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/draw-polygon.svg rename to public/fontawesome/svgs/solid/draw-polygon.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/drum-steelpan.svg b/public/fontawesome/svgs/solid/drum-steelpan.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/drum-steelpan.svg rename to public/fontawesome/svgs/solid/drum-steelpan.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/drum.svg b/public/fontawesome/svgs/solid/drum.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/drum.svg rename to public/fontawesome/svgs/solid/drum.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/dumbbell.svg b/public/fontawesome/svgs/solid/dumbbell.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/dumbbell.svg rename to public/fontawesome/svgs/solid/dumbbell.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/edit.svg b/public/fontawesome/svgs/solid/edit.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/edit.svg rename to public/fontawesome/svgs/solid/edit.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/eject.svg b/public/fontawesome/svgs/solid/eject.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/eject.svg rename to public/fontawesome/svgs/solid/eject.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/ellipsis-h.svg b/public/fontawesome/svgs/solid/ellipsis-h.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/ellipsis-h.svg rename to public/fontawesome/svgs/solid/ellipsis-h.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/ellipsis-v.svg b/public/fontawesome/svgs/solid/ellipsis-v.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/ellipsis-v.svg rename to public/fontawesome/svgs/solid/ellipsis-v.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/envelope-open-text.svg b/public/fontawesome/svgs/solid/envelope-open-text.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/envelope-open-text.svg rename to public/fontawesome/svgs/solid/envelope-open-text.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/envelope-open.svg b/public/fontawesome/svgs/solid/envelope-open.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/envelope-open.svg rename to public/fontawesome/svgs/solid/envelope-open.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/envelope-square.svg b/public/fontawesome/svgs/solid/envelope-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/envelope-square.svg rename to public/fontawesome/svgs/solid/envelope-square.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/envelope.svg b/public/fontawesome/svgs/solid/envelope.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/envelope.svg rename to public/fontawesome/svgs/solid/envelope.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/equals.svg b/public/fontawesome/svgs/solid/equals.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/equals.svg rename to public/fontawesome/svgs/solid/equals.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/eraser.svg b/public/fontawesome/svgs/solid/eraser.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/eraser.svg rename to public/fontawesome/svgs/solid/eraser.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/euro-sign.svg b/public/fontawesome/svgs/solid/euro-sign.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/euro-sign.svg rename to public/fontawesome/svgs/solid/euro-sign.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/exchange-alt.svg b/public/fontawesome/svgs/solid/exchange-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/exchange-alt.svg rename to public/fontawesome/svgs/solid/exchange-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/exclamation-circle.svg b/public/fontawesome/svgs/solid/exclamation-circle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/exclamation-circle.svg rename to public/fontawesome/svgs/solid/exclamation-circle.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/exclamation-triangle.svg b/public/fontawesome/svgs/solid/exclamation-triangle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/exclamation-triangle.svg rename to public/fontawesome/svgs/solid/exclamation-triangle.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/exclamation.svg b/public/fontawesome/svgs/solid/exclamation.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/exclamation.svg rename to public/fontawesome/svgs/solid/exclamation.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/expand-arrows-alt.svg b/public/fontawesome/svgs/solid/expand-arrows-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/expand-arrows-alt.svg rename to public/fontawesome/svgs/solid/expand-arrows-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/expand.svg b/public/fontawesome/svgs/solid/expand.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/expand.svg rename to public/fontawesome/svgs/solid/expand.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/external-link-alt.svg b/public/fontawesome/svgs/solid/external-link-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/external-link-alt.svg rename to public/fontawesome/svgs/solid/external-link-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/external-link-square-alt.svg b/public/fontawesome/svgs/solid/external-link-square-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/external-link-square-alt.svg rename to public/fontawesome/svgs/solid/external-link-square-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/eye-dropper.svg b/public/fontawesome/svgs/solid/eye-dropper.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/eye-dropper.svg rename to public/fontawesome/svgs/solid/eye-dropper.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/eye-slash.svg b/public/fontawesome/svgs/solid/eye-slash.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/eye-slash.svg rename to public/fontawesome/svgs/solid/eye-slash.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/eye.svg b/public/fontawesome/svgs/solid/eye.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/eye.svg rename to public/fontawesome/svgs/solid/eye.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/fast-backward.svg b/public/fontawesome/svgs/solid/fast-backward.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/fast-backward.svg rename to public/fontawesome/svgs/solid/fast-backward.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/fast-forward.svg b/public/fontawesome/svgs/solid/fast-forward.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/fast-forward.svg rename to public/fontawesome/svgs/solid/fast-forward.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/fax.svg b/public/fontawesome/svgs/solid/fax.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/fax.svg rename to public/fontawesome/svgs/solid/fax.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/feather-alt.svg b/public/fontawesome/svgs/solid/feather-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/feather-alt.svg rename to public/fontawesome/svgs/solid/feather-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/feather.svg b/public/fontawesome/svgs/solid/feather.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/feather.svg rename to public/fontawesome/svgs/solid/feather.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/female.svg b/public/fontawesome/svgs/solid/female.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/female.svg rename to public/fontawesome/svgs/solid/female.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/fighter-jet.svg b/public/fontawesome/svgs/solid/fighter-jet.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/fighter-jet.svg rename to public/fontawesome/svgs/solid/fighter-jet.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/file-alt.svg b/public/fontawesome/svgs/solid/file-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/file-alt.svg rename to public/fontawesome/svgs/solid/file-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/file-archive.svg b/public/fontawesome/svgs/solid/file-archive.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/file-archive.svg rename to public/fontawesome/svgs/solid/file-archive.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/file-audio.svg b/public/fontawesome/svgs/solid/file-audio.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/file-audio.svg rename to public/fontawesome/svgs/solid/file-audio.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/file-code.svg b/public/fontawesome/svgs/solid/file-code.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/file-code.svg rename to public/fontawesome/svgs/solid/file-code.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/file-contract.svg b/public/fontawesome/svgs/solid/file-contract.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/file-contract.svg rename to public/fontawesome/svgs/solid/file-contract.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/file-download.svg b/public/fontawesome/svgs/solid/file-download.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/file-download.svg rename to public/fontawesome/svgs/solid/file-download.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/file-excel.svg b/public/fontawesome/svgs/solid/file-excel.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/file-excel.svg rename to public/fontawesome/svgs/solid/file-excel.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/file-export.svg b/public/fontawesome/svgs/solid/file-export.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/file-export.svg rename to public/fontawesome/svgs/solid/file-export.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/file-image.svg b/public/fontawesome/svgs/solid/file-image.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/file-image.svg rename to public/fontawesome/svgs/solid/file-image.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/file-import.svg b/public/fontawesome/svgs/solid/file-import.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/file-import.svg rename to public/fontawesome/svgs/solid/file-import.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/file-invoice-dollar.svg b/public/fontawesome/svgs/solid/file-invoice-dollar.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/file-invoice-dollar.svg rename to public/fontawesome/svgs/solid/file-invoice-dollar.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/file-invoice.svg b/public/fontawesome/svgs/solid/file-invoice.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/file-invoice.svg rename to public/fontawesome/svgs/solid/file-invoice.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/file-medical-alt.svg b/public/fontawesome/svgs/solid/file-medical-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/file-medical-alt.svg rename to public/fontawesome/svgs/solid/file-medical-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/file-medical.svg b/public/fontawesome/svgs/solid/file-medical.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/file-medical.svg rename to public/fontawesome/svgs/solid/file-medical.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/file-pdf.svg b/public/fontawesome/svgs/solid/file-pdf.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/file-pdf.svg rename to public/fontawesome/svgs/solid/file-pdf.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/file-powerpoint.svg b/public/fontawesome/svgs/solid/file-powerpoint.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/file-powerpoint.svg rename to public/fontawesome/svgs/solid/file-powerpoint.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/file-prescription.svg b/public/fontawesome/svgs/solid/file-prescription.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/file-prescription.svg rename to public/fontawesome/svgs/solid/file-prescription.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/file-signature.svg b/public/fontawesome/svgs/solid/file-signature.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/file-signature.svg rename to public/fontawesome/svgs/solid/file-signature.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/file-upload.svg b/public/fontawesome/svgs/solid/file-upload.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/file-upload.svg rename to public/fontawesome/svgs/solid/file-upload.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/file-video.svg b/public/fontawesome/svgs/solid/file-video.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/file-video.svg rename to public/fontawesome/svgs/solid/file-video.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/file-word.svg b/public/fontawesome/svgs/solid/file-word.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/file-word.svg rename to public/fontawesome/svgs/solid/file-word.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/file.svg b/public/fontawesome/svgs/solid/file.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/file.svg rename to public/fontawesome/svgs/solid/file.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/fill-drip.svg b/public/fontawesome/svgs/solid/fill-drip.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/fill-drip.svg rename to public/fontawesome/svgs/solid/fill-drip.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/fill.svg b/public/fontawesome/svgs/solid/fill.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/fill.svg rename to public/fontawesome/svgs/solid/fill.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/film.svg b/public/fontawesome/svgs/solid/film.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/film.svg rename to public/fontawesome/svgs/solid/film.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/filter.svg b/public/fontawesome/svgs/solid/filter.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/filter.svg rename to public/fontawesome/svgs/solid/filter.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/fingerprint.svg b/public/fontawesome/svgs/solid/fingerprint.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/fingerprint.svg rename to public/fontawesome/svgs/solid/fingerprint.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/fire-extinguisher.svg b/public/fontawesome/svgs/solid/fire-extinguisher.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/fire-extinguisher.svg rename to public/fontawesome/svgs/solid/fire-extinguisher.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/fire.svg b/public/fontawesome/svgs/solid/fire.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/fire.svg rename to public/fontawesome/svgs/solid/fire.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/first-aid.svg b/public/fontawesome/svgs/solid/first-aid.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/first-aid.svg rename to public/fontawesome/svgs/solid/first-aid.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/fish.svg b/public/fontawesome/svgs/solid/fish.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/fish.svg rename to public/fontawesome/svgs/solid/fish.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/flag-checkered.svg b/public/fontawesome/svgs/solid/flag-checkered.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/flag-checkered.svg rename to public/fontawesome/svgs/solid/flag-checkered.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/flag.svg b/public/fontawesome/svgs/solid/flag.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/flag.svg rename to public/fontawesome/svgs/solid/flag.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/flask.svg b/public/fontawesome/svgs/solid/flask.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/flask.svg rename to public/fontawesome/svgs/solid/flask.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/flushed.svg b/public/fontawesome/svgs/solid/flushed.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/flushed.svg rename to public/fontawesome/svgs/solid/flushed.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/folder-minus.svg b/public/fontawesome/svgs/solid/folder-minus.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/folder-minus.svg rename to public/fontawesome/svgs/solid/folder-minus.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/folder-open.svg b/public/fontawesome/svgs/solid/folder-open.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/folder-open.svg rename to public/fontawesome/svgs/solid/folder-open.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/folder-plus.svg b/public/fontawesome/svgs/solid/folder-plus.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/folder-plus.svg rename to public/fontawesome/svgs/solid/folder-plus.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/folder.svg b/public/fontawesome/svgs/solid/folder.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/folder.svg rename to public/fontawesome/svgs/solid/folder.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/font-awesome-logo-full.svg b/public/fontawesome/svgs/solid/font-awesome-logo-full.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/font-awesome-logo-full.svg rename to public/fontawesome/svgs/solid/font-awesome-logo-full.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/font.svg b/public/fontawesome/svgs/solid/font.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/font.svg rename to public/fontawesome/svgs/solid/font.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/football-ball.svg b/public/fontawesome/svgs/solid/football-ball.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/football-ball.svg rename to public/fontawesome/svgs/solid/football-ball.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/forward.svg b/public/fontawesome/svgs/solid/forward.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/forward.svg rename to public/fontawesome/svgs/solid/forward.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/frog.svg b/public/fontawesome/svgs/solid/frog.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/frog.svg rename to public/fontawesome/svgs/solid/frog.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/frown-open.svg b/public/fontawesome/svgs/solid/frown-open.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/frown-open.svg rename to public/fontawesome/svgs/solid/frown-open.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/frown.svg b/public/fontawesome/svgs/solid/frown.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/frown.svg rename to public/fontawesome/svgs/solid/frown.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/funnel-dollar.svg b/public/fontawesome/svgs/solid/funnel-dollar.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/funnel-dollar.svg rename to public/fontawesome/svgs/solid/funnel-dollar.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/futbol.svg b/public/fontawesome/svgs/solid/futbol.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/futbol.svg rename to public/fontawesome/svgs/solid/futbol.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/gamepad.svg b/public/fontawesome/svgs/solid/gamepad.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/gamepad.svg rename to public/fontawesome/svgs/solid/gamepad.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/gas-pump.svg b/public/fontawesome/svgs/solid/gas-pump.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/gas-pump.svg rename to public/fontawesome/svgs/solid/gas-pump.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/gavel.svg b/public/fontawesome/svgs/solid/gavel.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/gavel.svg rename to public/fontawesome/svgs/solid/gavel.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/gem.svg b/public/fontawesome/svgs/solid/gem.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/gem.svg rename to public/fontawesome/svgs/solid/gem.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/genderless.svg b/public/fontawesome/svgs/solid/genderless.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/genderless.svg rename to public/fontawesome/svgs/solid/genderless.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/gift.svg b/public/fontawesome/svgs/solid/gift.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/gift.svg rename to public/fontawesome/svgs/solid/gift.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/glass-martini-alt.svg b/public/fontawesome/svgs/solid/glass-martini-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/glass-martini-alt.svg rename to public/fontawesome/svgs/solid/glass-martini-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/glass-martini.svg b/public/fontawesome/svgs/solid/glass-martini.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/glass-martini.svg rename to public/fontawesome/svgs/solid/glass-martini.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/glasses.svg b/public/fontawesome/svgs/solid/glasses.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/glasses.svg rename to public/fontawesome/svgs/solid/glasses.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/globe-africa.svg b/public/fontawesome/svgs/solid/globe-africa.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/globe-africa.svg rename to public/fontawesome/svgs/solid/globe-africa.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/globe-americas.svg b/public/fontawesome/svgs/solid/globe-americas.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/globe-americas.svg rename to public/fontawesome/svgs/solid/globe-americas.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/globe-asia.svg b/public/fontawesome/svgs/solid/globe-asia.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/globe-asia.svg rename to public/fontawesome/svgs/solid/globe-asia.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/globe.svg b/public/fontawesome/svgs/solid/globe.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/globe.svg rename to public/fontawesome/svgs/solid/globe.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/golf-ball.svg b/public/fontawesome/svgs/solid/golf-ball.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/golf-ball.svg rename to public/fontawesome/svgs/solid/golf-ball.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/gopuram.svg b/public/fontawesome/svgs/solid/gopuram.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/gopuram.svg rename to public/fontawesome/svgs/solid/gopuram.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/graduation-cap.svg b/public/fontawesome/svgs/solid/graduation-cap.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/graduation-cap.svg rename to public/fontawesome/svgs/solid/graduation-cap.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/greater-than-equal.svg b/public/fontawesome/svgs/solid/greater-than-equal.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/greater-than-equal.svg rename to public/fontawesome/svgs/solid/greater-than-equal.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/greater-than.svg b/public/fontawesome/svgs/solid/greater-than.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/greater-than.svg rename to public/fontawesome/svgs/solid/greater-than.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/grimace.svg b/public/fontawesome/svgs/solid/grimace.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/grimace.svg rename to public/fontawesome/svgs/solid/grimace.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/grin-alt.svg b/public/fontawesome/svgs/solid/grin-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/grin-alt.svg rename to public/fontawesome/svgs/solid/grin-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/grin-beam-sweat.svg b/public/fontawesome/svgs/solid/grin-beam-sweat.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/grin-beam-sweat.svg rename to public/fontawesome/svgs/solid/grin-beam-sweat.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/grin-beam.svg b/public/fontawesome/svgs/solid/grin-beam.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/grin-beam.svg rename to public/fontawesome/svgs/solid/grin-beam.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/grin-hearts.svg b/public/fontawesome/svgs/solid/grin-hearts.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/grin-hearts.svg rename to public/fontawesome/svgs/solid/grin-hearts.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/grin-squint-tears.svg b/public/fontawesome/svgs/solid/grin-squint-tears.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/grin-squint-tears.svg rename to public/fontawesome/svgs/solid/grin-squint-tears.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/grin-squint.svg b/public/fontawesome/svgs/solid/grin-squint.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/grin-squint.svg rename to public/fontawesome/svgs/solid/grin-squint.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/grin-stars.svg b/public/fontawesome/svgs/solid/grin-stars.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/grin-stars.svg rename to public/fontawesome/svgs/solid/grin-stars.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/grin-tears.svg b/public/fontawesome/svgs/solid/grin-tears.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/grin-tears.svg rename to public/fontawesome/svgs/solid/grin-tears.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/grin-tongue-squint.svg b/public/fontawesome/svgs/solid/grin-tongue-squint.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/grin-tongue-squint.svg rename to public/fontawesome/svgs/solid/grin-tongue-squint.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/grin-tongue-wink.svg b/public/fontawesome/svgs/solid/grin-tongue-wink.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/grin-tongue-wink.svg rename to public/fontawesome/svgs/solid/grin-tongue-wink.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/grin-tongue.svg b/public/fontawesome/svgs/solid/grin-tongue.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/grin-tongue.svg rename to public/fontawesome/svgs/solid/grin-tongue.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/grin-wink.svg b/public/fontawesome/svgs/solid/grin-wink.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/grin-wink.svg rename to public/fontawesome/svgs/solid/grin-wink.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/grin.svg b/public/fontawesome/svgs/solid/grin.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/grin.svg rename to public/fontawesome/svgs/solid/grin.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/grip-horizontal.svg b/public/fontawesome/svgs/solid/grip-horizontal.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/grip-horizontal.svg rename to public/fontawesome/svgs/solid/grip-horizontal.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/grip-vertical.svg b/public/fontawesome/svgs/solid/grip-vertical.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/grip-vertical.svg rename to public/fontawesome/svgs/solid/grip-vertical.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/h-square.svg b/public/fontawesome/svgs/solid/h-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/h-square.svg rename to public/fontawesome/svgs/solid/h-square.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/hamsa.svg b/public/fontawesome/svgs/solid/hamsa.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/hamsa.svg rename to public/fontawesome/svgs/solid/hamsa.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/hand-holding-heart.svg b/public/fontawesome/svgs/solid/hand-holding-heart.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/hand-holding-heart.svg rename to public/fontawesome/svgs/solid/hand-holding-heart.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/hand-holding-usd.svg b/public/fontawesome/svgs/solid/hand-holding-usd.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/hand-holding-usd.svg rename to public/fontawesome/svgs/solid/hand-holding-usd.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/hand-holding.svg b/public/fontawesome/svgs/solid/hand-holding.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/hand-holding.svg rename to public/fontawesome/svgs/solid/hand-holding.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/hand-lizard.svg b/public/fontawesome/svgs/solid/hand-lizard.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/hand-lizard.svg rename to public/fontawesome/svgs/solid/hand-lizard.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/hand-paper.svg b/public/fontawesome/svgs/solid/hand-paper.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/hand-paper.svg rename to public/fontawesome/svgs/solid/hand-paper.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/hand-peace.svg b/public/fontawesome/svgs/solid/hand-peace.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/hand-peace.svg rename to public/fontawesome/svgs/solid/hand-peace.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/hand-point-down.svg b/public/fontawesome/svgs/solid/hand-point-down.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/hand-point-down.svg rename to public/fontawesome/svgs/solid/hand-point-down.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/hand-point-left.svg b/public/fontawesome/svgs/solid/hand-point-left.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/hand-point-left.svg rename to public/fontawesome/svgs/solid/hand-point-left.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/hand-point-right.svg b/public/fontawesome/svgs/solid/hand-point-right.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/hand-point-right.svg rename to public/fontawesome/svgs/solid/hand-point-right.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/hand-point-up.svg b/public/fontawesome/svgs/solid/hand-point-up.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/hand-point-up.svg rename to public/fontawesome/svgs/solid/hand-point-up.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/hand-pointer.svg b/public/fontawesome/svgs/solid/hand-pointer.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/hand-pointer.svg rename to public/fontawesome/svgs/solid/hand-pointer.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/hand-rock.svg b/public/fontawesome/svgs/solid/hand-rock.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/hand-rock.svg rename to public/fontawesome/svgs/solid/hand-rock.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/hand-scissors.svg b/public/fontawesome/svgs/solid/hand-scissors.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/hand-scissors.svg rename to public/fontawesome/svgs/solid/hand-scissors.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/hand-spock.svg b/public/fontawesome/svgs/solid/hand-spock.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/hand-spock.svg rename to public/fontawesome/svgs/solid/hand-spock.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/hands-helping.svg b/public/fontawesome/svgs/solid/hands-helping.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/hands-helping.svg rename to public/fontawesome/svgs/solid/hands-helping.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/hands.svg b/public/fontawesome/svgs/solid/hands.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/hands.svg rename to public/fontawesome/svgs/solid/hands.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/handshake.svg b/public/fontawesome/svgs/solid/handshake.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/handshake.svg rename to public/fontawesome/svgs/solid/handshake.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/hashtag.svg b/public/fontawesome/svgs/solid/hashtag.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/hashtag.svg rename to public/fontawesome/svgs/solid/hashtag.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/haykal.svg b/public/fontawesome/svgs/solid/haykal.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/haykal.svg rename to public/fontawesome/svgs/solid/haykal.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/hdd.svg b/public/fontawesome/svgs/solid/hdd.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/hdd.svg rename to public/fontawesome/svgs/solid/hdd.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/heading.svg b/public/fontawesome/svgs/solid/heading.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/heading.svg rename to public/fontawesome/svgs/solid/heading.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/headphones-alt.svg b/public/fontawesome/svgs/solid/headphones-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/headphones-alt.svg rename to public/fontawesome/svgs/solid/headphones-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/headphones.svg b/public/fontawesome/svgs/solid/headphones.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/headphones.svg rename to public/fontawesome/svgs/solid/headphones.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/headset.svg b/public/fontawesome/svgs/solid/headset.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/headset.svg rename to public/fontawesome/svgs/solid/headset.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/heart.svg b/public/fontawesome/svgs/solid/heart.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/heart.svg rename to public/fontawesome/svgs/solid/heart.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/heartbeat.svg b/public/fontawesome/svgs/solid/heartbeat.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/heartbeat.svg rename to public/fontawesome/svgs/solid/heartbeat.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/helicopter.svg b/public/fontawesome/svgs/solid/helicopter.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/helicopter.svg rename to public/fontawesome/svgs/solid/helicopter.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/highlighter.svg b/public/fontawesome/svgs/solid/highlighter.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/highlighter.svg rename to public/fontawesome/svgs/solid/highlighter.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/history.svg b/public/fontawesome/svgs/solid/history.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/history.svg rename to public/fontawesome/svgs/solid/history.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/hockey-puck.svg b/public/fontawesome/svgs/solid/hockey-puck.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/hockey-puck.svg rename to public/fontawesome/svgs/solid/hockey-puck.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/home.svg b/public/fontawesome/svgs/solid/home.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/home.svg rename to public/fontawesome/svgs/solid/home.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/hospital-alt.svg b/public/fontawesome/svgs/solid/hospital-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/hospital-alt.svg rename to public/fontawesome/svgs/solid/hospital-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/hospital-symbol.svg b/public/fontawesome/svgs/solid/hospital-symbol.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/hospital-symbol.svg rename to public/fontawesome/svgs/solid/hospital-symbol.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/hospital.svg b/public/fontawesome/svgs/solid/hospital.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/hospital.svg rename to public/fontawesome/svgs/solid/hospital.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/hot-tub.svg b/public/fontawesome/svgs/solid/hot-tub.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/hot-tub.svg rename to public/fontawesome/svgs/solid/hot-tub.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/hotel.svg b/public/fontawesome/svgs/solid/hotel.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/hotel.svg rename to public/fontawesome/svgs/solid/hotel.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/hourglass-end.svg b/public/fontawesome/svgs/solid/hourglass-end.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/hourglass-end.svg rename to public/fontawesome/svgs/solid/hourglass-end.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/hourglass-half.svg b/public/fontawesome/svgs/solid/hourglass-half.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/hourglass-half.svg rename to public/fontawesome/svgs/solid/hourglass-half.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/hourglass-start.svg b/public/fontawesome/svgs/solid/hourglass-start.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/hourglass-start.svg rename to public/fontawesome/svgs/solid/hourglass-start.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/hourglass.svg b/public/fontawesome/svgs/solid/hourglass.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/hourglass.svg rename to public/fontawesome/svgs/solid/hourglass.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/i-cursor.svg b/public/fontawesome/svgs/solid/i-cursor.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/i-cursor.svg rename to public/fontawesome/svgs/solid/i-cursor.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/id-badge.svg b/public/fontawesome/svgs/solid/id-badge.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/id-badge.svg rename to public/fontawesome/svgs/solid/id-badge.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/id-card-alt.svg b/public/fontawesome/svgs/solid/id-card-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/id-card-alt.svg rename to public/fontawesome/svgs/solid/id-card-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/id-card.svg b/public/fontawesome/svgs/solid/id-card.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/id-card.svg rename to public/fontawesome/svgs/solid/id-card.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/image.svg b/public/fontawesome/svgs/solid/image.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/image.svg rename to public/fontawesome/svgs/solid/image.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/images.svg b/public/fontawesome/svgs/solid/images.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/images.svg rename to public/fontawesome/svgs/solid/images.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/inbox.svg b/public/fontawesome/svgs/solid/inbox.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/inbox.svg rename to public/fontawesome/svgs/solid/inbox.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/indent.svg b/public/fontawesome/svgs/solid/indent.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/indent.svg rename to public/fontawesome/svgs/solid/indent.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/industry.svg b/public/fontawesome/svgs/solid/industry.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/industry.svg rename to public/fontawesome/svgs/solid/industry.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/infinity.svg b/public/fontawesome/svgs/solid/infinity.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/infinity.svg rename to public/fontawesome/svgs/solid/infinity.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/info-circle.svg b/public/fontawesome/svgs/solid/info-circle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/info-circle.svg rename to public/fontawesome/svgs/solid/info-circle.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/info.svg b/public/fontawesome/svgs/solid/info.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/info.svg rename to public/fontawesome/svgs/solid/info.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/italic.svg b/public/fontawesome/svgs/solid/italic.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/italic.svg rename to public/fontawesome/svgs/solid/italic.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/jedi.svg b/public/fontawesome/svgs/solid/jedi.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/jedi.svg rename to public/fontawesome/svgs/solid/jedi.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/joint.svg b/public/fontawesome/svgs/solid/joint.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/joint.svg rename to public/fontawesome/svgs/solid/joint.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/journal-whills.svg b/public/fontawesome/svgs/solid/journal-whills.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/journal-whills.svg rename to public/fontawesome/svgs/solid/journal-whills.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/kaaba.svg b/public/fontawesome/svgs/solid/kaaba.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/kaaba.svg rename to public/fontawesome/svgs/solid/kaaba.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/key.svg b/public/fontawesome/svgs/solid/key.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/key.svg rename to public/fontawesome/svgs/solid/key.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/keyboard.svg b/public/fontawesome/svgs/solid/keyboard.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/keyboard.svg rename to public/fontawesome/svgs/solid/keyboard.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/khanda.svg b/public/fontawesome/svgs/solid/khanda.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/khanda.svg rename to public/fontawesome/svgs/solid/khanda.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/kiss-beam.svg b/public/fontawesome/svgs/solid/kiss-beam.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/kiss-beam.svg rename to public/fontawesome/svgs/solid/kiss-beam.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/kiss-wink-heart.svg b/public/fontawesome/svgs/solid/kiss-wink-heart.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/kiss-wink-heart.svg rename to public/fontawesome/svgs/solid/kiss-wink-heart.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/kiss.svg b/public/fontawesome/svgs/solid/kiss.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/kiss.svg rename to public/fontawesome/svgs/solid/kiss.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/kiwi-bird.svg b/public/fontawesome/svgs/solid/kiwi-bird.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/kiwi-bird.svg rename to public/fontawesome/svgs/solid/kiwi-bird.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/landmark.svg b/public/fontawesome/svgs/solid/landmark.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/landmark.svg rename to public/fontawesome/svgs/solid/landmark.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/language.svg b/public/fontawesome/svgs/solid/language.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/language.svg rename to public/fontawesome/svgs/solid/language.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/laptop-code.svg b/public/fontawesome/svgs/solid/laptop-code.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/laptop-code.svg rename to public/fontawesome/svgs/solid/laptop-code.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/laptop.svg b/public/fontawesome/svgs/solid/laptop.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/laptop.svg rename to public/fontawesome/svgs/solid/laptop.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/laugh-beam.svg b/public/fontawesome/svgs/solid/laugh-beam.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/laugh-beam.svg rename to public/fontawesome/svgs/solid/laugh-beam.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/laugh-squint.svg b/public/fontawesome/svgs/solid/laugh-squint.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/laugh-squint.svg rename to public/fontawesome/svgs/solid/laugh-squint.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/laugh-wink.svg b/public/fontawesome/svgs/solid/laugh-wink.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/laugh-wink.svg rename to public/fontawesome/svgs/solid/laugh-wink.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/laugh.svg b/public/fontawesome/svgs/solid/laugh.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/laugh.svg rename to public/fontawesome/svgs/solid/laugh.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/layer-group.svg b/public/fontawesome/svgs/solid/layer-group.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/layer-group.svg rename to public/fontawesome/svgs/solid/layer-group.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/leaf.svg b/public/fontawesome/svgs/solid/leaf.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/leaf.svg rename to public/fontawesome/svgs/solid/leaf.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/lemon.svg b/public/fontawesome/svgs/solid/lemon.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/lemon.svg rename to public/fontawesome/svgs/solid/lemon.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/less-than-equal.svg b/public/fontawesome/svgs/solid/less-than-equal.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/less-than-equal.svg rename to public/fontawesome/svgs/solid/less-than-equal.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/less-than.svg b/public/fontawesome/svgs/solid/less-than.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/less-than.svg rename to public/fontawesome/svgs/solid/less-than.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/level-down-alt.svg b/public/fontawesome/svgs/solid/level-down-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/level-down-alt.svg rename to public/fontawesome/svgs/solid/level-down-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/level-up-alt.svg b/public/fontawesome/svgs/solid/level-up-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/level-up-alt.svg rename to public/fontawesome/svgs/solid/level-up-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/life-ring.svg b/public/fontawesome/svgs/solid/life-ring.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/life-ring.svg rename to public/fontawesome/svgs/solid/life-ring.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/lightbulb.svg b/public/fontawesome/svgs/solid/lightbulb.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/lightbulb.svg rename to public/fontawesome/svgs/solid/lightbulb.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/link.svg b/public/fontawesome/svgs/solid/link.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/link.svg rename to public/fontawesome/svgs/solid/link.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/lira-sign.svg b/public/fontawesome/svgs/solid/lira-sign.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/lira-sign.svg rename to public/fontawesome/svgs/solid/lira-sign.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/list-alt.svg b/public/fontawesome/svgs/solid/list-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/list-alt.svg rename to public/fontawesome/svgs/solid/list-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/list-ol.svg b/public/fontawesome/svgs/solid/list-ol.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/list-ol.svg rename to public/fontawesome/svgs/solid/list-ol.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/list-ul.svg b/public/fontawesome/svgs/solid/list-ul.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/list-ul.svg rename to public/fontawesome/svgs/solid/list-ul.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/list.svg b/public/fontawesome/svgs/solid/list.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/list.svg rename to public/fontawesome/svgs/solid/list.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/location-arrow.svg b/public/fontawesome/svgs/solid/location-arrow.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/location-arrow.svg rename to public/fontawesome/svgs/solid/location-arrow.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/lock-open.svg b/public/fontawesome/svgs/solid/lock-open.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/lock-open.svg rename to public/fontawesome/svgs/solid/lock-open.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/lock.svg b/public/fontawesome/svgs/solid/lock.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/lock.svg rename to public/fontawesome/svgs/solid/lock.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/long-arrow-alt-down.svg b/public/fontawesome/svgs/solid/long-arrow-alt-down.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/long-arrow-alt-down.svg rename to public/fontawesome/svgs/solid/long-arrow-alt-down.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/long-arrow-alt-left.svg b/public/fontawesome/svgs/solid/long-arrow-alt-left.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/long-arrow-alt-left.svg rename to public/fontawesome/svgs/solid/long-arrow-alt-left.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/long-arrow-alt-right.svg b/public/fontawesome/svgs/solid/long-arrow-alt-right.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/long-arrow-alt-right.svg rename to public/fontawesome/svgs/solid/long-arrow-alt-right.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/long-arrow-alt-up.svg b/public/fontawesome/svgs/solid/long-arrow-alt-up.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/long-arrow-alt-up.svg rename to public/fontawesome/svgs/solid/long-arrow-alt-up.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/low-vision.svg b/public/fontawesome/svgs/solid/low-vision.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/low-vision.svg rename to public/fontawesome/svgs/solid/low-vision.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/luggage-cart.svg b/public/fontawesome/svgs/solid/luggage-cart.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/luggage-cart.svg rename to public/fontawesome/svgs/solid/luggage-cart.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/magic.svg b/public/fontawesome/svgs/solid/magic.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/magic.svg rename to public/fontawesome/svgs/solid/magic.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/magnet.svg b/public/fontawesome/svgs/solid/magnet.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/magnet.svg rename to public/fontawesome/svgs/solid/magnet.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/mail-bulk.svg b/public/fontawesome/svgs/solid/mail-bulk.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/mail-bulk.svg rename to public/fontawesome/svgs/solid/mail-bulk.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/male.svg b/public/fontawesome/svgs/solid/male.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/male.svg rename to public/fontawesome/svgs/solid/male.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/map-marked-alt.svg b/public/fontawesome/svgs/solid/map-marked-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/map-marked-alt.svg rename to public/fontawesome/svgs/solid/map-marked-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/map-marked.svg b/public/fontawesome/svgs/solid/map-marked.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/map-marked.svg rename to public/fontawesome/svgs/solid/map-marked.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/map-marker-alt.svg b/public/fontawesome/svgs/solid/map-marker-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/map-marker-alt.svg rename to public/fontawesome/svgs/solid/map-marker-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/map-marker.svg b/public/fontawesome/svgs/solid/map-marker.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/map-marker.svg rename to public/fontawesome/svgs/solid/map-marker.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/map-pin.svg b/public/fontawesome/svgs/solid/map-pin.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/map-pin.svg rename to public/fontawesome/svgs/solid/map-pin.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/map-signs.svg b/public/fontawesome/svgs/solid/map-signs.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/map-signs.svg rename to public/fontawesome/svgs/solid/map-signs.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/map.svg b/public/fontawesome/svgs/solid/map.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/map.svg rename to public/fontawesome/svgs/solid/map.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/marker.svg b/public/fontawesome/svgs/solid/marker.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/marker.svg rename to public/fontawesome/svgs/solid/marker.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/mars-double.svg b/public/fontawesome/svgs/solid/mars-double.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/mars-double.svg rename to public/fontawesome/svgs/solid/mars-double.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/mars-stroke-h.svg b/public/fontawesome/svgs/solid/mars-stroke-h.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/mars-stroke-h.svg rename to public/fontawesome/svgs/solid/mars-stroke-h.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/mars-stroke-v.svg b/public/fontawesome/svgs/solid/mars-stroke-v.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/mars-stroke-v.svg rename to public/fontawesome/svgs/solid/mars-stroke-v.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/mars-stroke.svg b/public/fontawesome/svgs/solid/mars-stroke.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/mars-stroke.svg rename to public/fontawesome/svgs/solid/mars-stroke.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/mars.svg b/public/fontawesome/svgs/solid/mars.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/mars.svg rename to public/fontawesome/svgs/solid/mars.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/medal.svg b/public/fontawesome/svgs/solid/medal.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/medal.svg rename to public/fontawesome/svgs/solid/medal.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/medkit.svg b/public/fontawesome/svgs/solid/medkit.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/medkit.svg rename to public/fontawesome/svgs/solid/medkit.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/meh-blank.svg b/public/fontawesome/svgs/solid/meh-blank.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/meh-blank.svg rename to public/fontawesome/svgs/solid/meh-blank.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/meh-rolling-eyes.svg b/public/fontawesome/svgs/solid/meh-rolling-eyes.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/meh-rolling-eyes.svg rename to public/fontawesome/svgs/solid/meh-rolling-eyes.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/meh.svg b/public/fontawesome/svgs/solid/meh.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/meh.svg rename to public/fontawesome/svgs/solid/meh.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/memory.svg b/public/fontawesome/svgs/solid/memory.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/memory.svg rename to public/fontawesome/svgs/solid/memory.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/menorah.svg b/public/fontawesome/svgs/solid/menorah.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/menorah.svg rename to public/fontawesome/svgs/solid/menorah.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/mercury.svg b/public/fontawesome/svgs/solid/mercury.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/mercury.svg rename to public/fontawesome/svgs/solid/mercury.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/microchip.svg b/public/fontawesome/svgs/solid/microchip.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/microchip.svg rename to public/fontawesome/svgs/solid/microchip.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/microphone-alt-slash.svg b/public/fontawesome/svgs/solid/microphone-alt-slash.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/microphone-alt-slash.svg rename to public/fontawesome/svgs/solid/microphone-alt-slash.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/microphone-alt.svg b/public/fontawesome/svgs/solid/microphone-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/microphone-alt.svg rename to public/fontawesome/svgs/solid/microphone-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/microphone-slash.svg b/public/fontawesome/svgs/solid/microphone-slash.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/microphone-slash.svg rename to public/fontawesome/svgs/solid/microphone-slash.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/microphone.svg b/public/fontawesome/svgs/solid/microphone.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/microphone.svg rename to public/fontawesome/svgs/solid/microphone.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/microscope.svg b/public/fontawesome/svgs/solid/microscope.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/microscope.svg rename to public/fontawesome/svgs/solid/microscope.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/minus-circle.svg b/public/fontawesome/svgs/solid/minus-circle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/minus-circle.svg rename to public/fontawesome/svgs/solid/minus-circle.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/minus-square.svg b/public/fontawesome/svgs/solid/minus-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/minus-square.svg rename to public/fontawesome/svgs/solid/minus-square.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/minus.svg b/public/fontawesome/svgs/solid/minus.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/minus.svg rename to public/fontawesome/svgs/solid/minus.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/mobile-alt.svg b/public/fontawesome/svgs/solid/mobile-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/mobile-alt.svg rename to public/fontawesome/svgs/solid/mobile-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/mobile.svg b/public/fontawesome/svgs/solid/mobile.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/mobile.svg rename to public/fontawesome/svgs/solid/mobile.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/money-bill-alt.svg b/public/fontawesome/svgs/solid/money-bill-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/money-bill-alt.svg rename to public/fontawesome/svgs/solid/money-bill-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/money-bill-wave-alt.svg b/public/fontawesome/svgs/solid/money-bill-wave-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/money-bill-wave-alt.svg rename to public/fontawesome/svgs/solid/money-bill-wave-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/money-bill-wave.svg b/public/fontawesome/svgs/solid/money-bill-wave.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/money-bill-wave.svg rename to public/fontawesome/svgs/solid/money-bill-wave.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/money-bill.svg b/public/fontawesome/svgs/solid/money-bill.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/money-bill.svg rename to public/fontawesome/svgs/solid/money-bill.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/money-check-alt.svg b/public/fontawesome/svgs/solid/money-check-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/money-check-alt.svg rename to public/fontawesome/svgs/solid/money-check-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/money-check.svg b/public/fontawesome/svgs/solid/money-check.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/money-check.svg rename to public/fontawesome/svgs/solid/money-check.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/monument.svg b/public/fontawesome/svgs/solid/monument.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/monument.svg rename to public/fontawesome/svgs/solid/monument.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/moon.svg b/public/fontawesome/svgs/solid/moon.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/moon.svg rename to public/fontawesome/svgs/solid/moon.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/mortar-pestle.svg b/public/fontawesome/svgs/solid/mortar-pestle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/mortar-pestle.svg rename to public/fontawesome/svgs/solid/mortar-pestle.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/mosque.svg b/public/fontawesome/svgs/solid/mosque.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/mosque.svg rename to public/fontawesome/svgs/solid/mosque.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/motorcycle.svg b/public/fontawesome/svgs/solid/motorcycle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/motorcycle.svg rename to public/fontawesome/svgs/solid/motorcycle.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/mouse-pointer.svg b/public/fontawesome/svgs/solid/mouse-pointer.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/mouse-pointer.svg rename to public/fontawesome/svgs/solid/mouse-pointer.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/music.svg b/public/fontawesome/svgs/solid/music.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/music.svg rename to public/fontawesome/svgs/solid/music.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/neuter.svg b/public/fontawesome/svgs/solid/neuter.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/neuter.svg rename to public/fontawesome/svgs/solid/neuter.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/newspaper.svg b/public/fontawesome/svgs/solid/newspaper.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/newspaper.svg rename to public/fontawesome/svgs/solid/newspaper.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/not-equal.svg b/public/fontawesome/svgs/solid/not-equal.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/not-equal.svg rename to public/fontawesome/svgs/solid/not-equal.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/notes-medical.svg b/public/fontawesome/svgs/solid/notes-medical.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/notes-medical.svg rename to public/fontawesome/svgs/solid/notes-medical.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/object-group.svg b/public/fontawesome/svgs/solid/object-group.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/object-group.svg rename to public/fontawesome/svgs/solid/object-group.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/object-ungroup.svg b/public/fontawesome/svgs/solid/object-ungroup.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/object-ungroup.svg rename to public/fontawesome/svgs/solid/object-ungroup.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/oil-can.svg b/public/fontawesome/svgs/solid/oil-can.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/oil-can.svg rename to public/fontawesome/svgs/solid/oil-can.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/om.svg b/public/fontawesome/svgs/solid/om.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/om.svg rename to public/fontawesome/svgs/solid/om.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/outdent.svg b/public/fontawesome/svgs/solid/outdent.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/outdent.svg rename to public/fontawesome/svgs/solid/outdent.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/paint-brush.svg b/public/fontawesome/svgs/solid/paint-brush.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/paint-brush.svg rename to public/fontawesome/svgs/solid/paint-brush.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/paint-roller.svg b/public/fontawesome/svgs/solid/paint-roller.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/paint-roller.svg rename to public/fontawesome/svgs/solid/paint-roller.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/palette.svg b/public/fontawesome/svgs/solid/palette.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/palette.svg rename to public/fontawesome/svgs/solid/palette.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/pallet.svg b/public/fontawesome/svgs/solid/pallet.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/pallet.svg rename to public/fontawesome/svgs/solid/pallet.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/paper-plane.svg b/public/fontawesome/svgs/solid/paper-plane.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/paper-plane.svg rename to public/fontawesome/svgs/solid/paper-plane.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/paperclip.svg b/public/fontawesome/svgs/solid/paperclip.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/paperclip.svg rename to public/fontawesome/svgs/solid/paperclip.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/parachute-box.svg b/public/fontawesome/svgs/solid/parachute-box.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/parachute-box.svg rename to public/fontawesome/svgs/solid/parachute-box.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/paragraph.svg b/public/fontawesome/svgs/solid/paragraph.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/paragraph.svg rename to public/fontawesome/svgs/solid/paragraph.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/parking.svg b/public/fontawesome/svgs/solid/parking.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/parking.svg rename to public/fontawesome/svgs/solid/parking.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/passport.svg b/public/fontawesome/svgs/solid/passport.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/passport.svg rename to public/fontawesome/svgs/solid/passport.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/pastafarianism.svg b/public/fontawesome/svgs/solid/pastafarianism.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/pastafarianism.svg rename to public/fontawesome/svgs/solid/pastafarianism.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/paste.svg b/public/fontawesome/svgs/solid/paste.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/paste.svg rename to public/fontawesome/svgs/solid/paste.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/pause-circle.svg b/public/fontawesome/svgs/solid/pause-circle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/pause-circle.svg rename to public/fontawesome/svgs/solid/pause-circle.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/pause.svg b/public/fontawesome/svgs/solid/pause.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/pause.svg rename to public/fontawesome/svgs/solid/pause.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/paw.svg b/public/fontawesome/svgs/solid/paw.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/paw.svg rename to public/fontawesome/svgs/solid/paw.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/peace.svg b/public/fontawesome/svgs/solid/peace.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/peace.svg rename to public/fontawesome/svgs/solid/peace.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/pen-alt.svg b/public/fontawesome/svgs/solid/pen-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/pen-alt.svg rename to public/fontawesome/svgs/solid/pen-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/pen-fancy.svg b/public/fontawesome/svgs/solid/pen-fancy.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/pen-fancy.svg rename to public/fontawesome/svgs/solid/pen-fancy.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/pen-nib.svg b/public/fontawesome/svgs/solid/pen-nib.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/pen-nib.svg rename to public/fontawesome/svgs/solid/pen-nib.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/pen-square.svg b/public/fontawesome/svgs/solid/pen-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/pen-square.svg rename to public/fontawesome/svgs/solid/pen-square.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/pen.svg b/public/fontawesome/svgs/solid/pen.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/pen.svg rename to public/fontawesome/svgs/solid/pen.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/pencil-alt.svg b/public/fontawesome/svgs/solid/pencil-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/pencil-alt.svg rename to public/fontawesome/svgs/solid/pencil-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/pencil-ruler.svg b/public/fontawesome/svgs/solid/pencil-ruler.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/pencil-ruler.svg rename to public/fontawesome/svgs/solid/pencil-ruler.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/people-carry.svg b/public/fontawesome/svgs/solid/people-carry.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/people-carry.svg rename to public/fontawesome/svgs/solid/people-carry.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/percent.svg b/public/fontawesome/svgs/solid/percent.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/percent.svg rename to public/fontawesome/svgs/solid/percent.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/percentage.svg b/public/fontawesome/svgs/solid/percentage.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/percentage.svg rename to public/fontawesome/svgs/solid/percentage.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/phone-slash.svg b/public/fontawesome/svgs/solid/phone-slash.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/phone-slash.svg rename to public/fontawesome/svgs/solid/phone-slash.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/phone-square.svg b/public/fontawesome/svgs/solid/phone-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/phone-square.svg rename to public/fontawesome/svgs/solid/phone-square.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/phone-volume.svg b/public/fontawesome/svgs/solid/phone-volume.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/phone-volume.svg rename to public/fontawesome/svgs/solid/phone-volume.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/phone.svg b/public/fontawesome/svgs/solid/phone.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/phone.svg rename to public/fontawesome/svgs/solid/phone.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/piggy-bank.svg b/public/fontawesome/svgs/solid/piggy-bank.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/piggy-bank.svg rename to public/fontawesome/svgs/solid/piggy-bank.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/pills.svg b/public/fontawesome/svgs/solid/pills.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/pills.svg rename to public/fontawesome/svgs/solid/pills.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/place-of-worship.svg b/public/fontawesome/svgs/solid/place-of-worship.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/place-of-worship.svg rename to public/fontawesome/svgs/solid/place-of-worship.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/plane-arrival.svg b/public/fontawesome/svgs/solid/plane-arrival.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/plane-arrival.svg rename to public/fontawesome/svgs/solid/plane-arrival.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/plane-departure.svg b/public/fontawesome/svgs/solid/plane-departure.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/plane-departure.svg rename to public/fontawesome/svgs/solid/plane-departure.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/plane.svg b/public/fontawesome/svgs/solid/plane.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/plane.svg rename to public/fontawesome/svgs/solid/plane.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/play-circle.svg b/public/fontawesome/svgs/solid/play-circle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/play-circle.svg rename to public/fontawesome/svgs/solid/play-circle.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/play.svg b/public/fontawesome/svgs/solid/play.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/play.svg rename to public/fontawesome/svgs/solid/play.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/plug.svg b/public/fontawesome/svgs/solid/plug.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/plug.svg rename to public/fontawesome/svgs/solid/plug.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/plus-circle.svg b/public/fontawesome/svgs/solid/plus-circle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/plus-circle.svg rename to public/fontawesome/svgs/solid/plus-circle.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/plus-square.svg b/public/fontawesome/svgs/solid/plus-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/plus-square.svg rename to public/fontawesome/svgs/solid/plus-square.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/plus.svg b/public/fontawesome/svgs/solid/plus.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/plus.svg rename to public/fontawesome/svgs/solid/plus.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/podcast.svg b/public/fontawesome/svgs/solid/podcast.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/podcast.svg rename to public/fontawesome/svgs/solid/podcast.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/poll-h.svg b/public/fontawesome/svgs/solid/poll-h.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/poll-h.svg rename to public/fontawesome/svgs/solid/poll-h.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/poll.svg b/public/fontawesome/svgs/solid/poll.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/poll.svg rename to public/fontawesome/svgs/solid/poll.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/poo.svg b/public/fontawesome/svgs/solid/poo.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/poo.svg rename to public/fontawesome/svgs/solid/poo.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/poop.svg b/public/fontawesome/svgs/solid/poop.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/poop.svg rename to public/fontawesome/svgs/solid/poop.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/portrait.svg b/public/fontawesome/svgs/solid/portrait.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/portrait.svg rename to public/fontawesome/svgs/solid/portrait.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/pound-sign.svg b/public/fontawesome/svgs/solid/pound-sign.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/pound-sign.svg rename to public/fontawesome/svgs/solid/pound-sign.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/power-off.svg b/public/fontawesome/svgs/solid/power-off.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/power-off.svg rename to public/fontawesome/svgs/solid/power-off.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/pray.svg b/public/fontawesome/svgs/solid/pray.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/pray.svg rename to public/fontawesome/svgs/solid/pray.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/praying-hands.svg b/public/fontawesome/svgs/solid/praying-hands.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/praying-hands.svg rename to public/fontawesome/svgs/solid/praying-hands.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/prescription-bottle-alt.svg b/public/fontawesome/svgs/solid/prescription-bottle-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/prescription-bottle-alt.svg rename to public/fontawesome/svgs/solid/prescription-bottle-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/prescription-bottle.svg b/public/fontawesome/svgs/solid/prescription-bottle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/prescription-bottle.svg rename to public/fontawesome/svgs/solid/prescription-bottle.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/prescription.svg b/public/fontawesome/svgs/solid/prescription.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/prescription.svg rename to public/fontawesome/svgs/solid/prescription.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/print.svg b/public/fontawesome/svgs/solid/print.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/print.svg rename to public/fontawesome/svgs/solid/print.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/procedures.svg b/public/fontawesome/svgs/solid/procedures.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/procedures.svg rename to public/fontawesome/svgs/solid/procedures.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/project-diagram.svg b/public/fontawesome/svgs/solid/project-diagram.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/project-diagram.svg rename to public/fontawesome/svgs/solid/project-diagram.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/puzzle-piece.svg b/public/fontawesome/svgs/solid/puzzle-piece.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/puzzle-piece.svg rename to public/fontawesome/svgs/solid/puzzle-piece.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/qrcode.svg b/public/fontawesome/svgs/solid/qrcode.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/qrcode.svg rename to public/fontawesome/svgs/solid/qrcode.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/question-circle.svg b/public/fontawesome/svgs/solid/question-circle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/question-circle.svg rename to public/fontawesome/svgs/solid/question-circle.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/question.svg b/public/fontawesome/svgs/solid/question.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/question.svg rename to public/fontawesome/svgs/solid/question.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/quidditch.svg b/public/fontawesome/svgs/solid/quidditch.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/quidditch.svg rename to public/fontawesome/svgs/solid/quidditch.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/quote-left.svg b/public/fontawesome/svgs/solid/quote-left.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/quote-left.svg rename to public/fontawesome/svgs/solid/quote-left.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/quote-right.svg b/public/fontawesome/svgs/solid/quote-right.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/quote-right.svg rename to public/fontawesome/svgs/solid/quote-right.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/quran.svg b/public/fontawesome/svgs/solid/quran.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/quran.svg rename to public/fontawesome/svgs/solid/quran.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/random.svg b/public/fontawesome/svgs/solid/random.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/random.svg rename to public/fontawesome/svgs/solid/random.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/receipt.svg b/public/fontawesome/svgs/solid/receipt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/receipt.svg rename to public/fontawesome/svgs/solid/receipt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/recycle.svg b/public/fontawesome/svgs/solid/recycle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/recycle.svg rename to public/fontawesome/svgs/solid/recycle.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/redo-alt.svg b/public/fontawesome/svgs/solid/redo-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/redo-alt.svg rename to public/fontawesome/svgs/solid/redo-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/redo.svg b/public/fontawesome/svgs/solid/redo.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/redo.svg rename to public/fontawesome/svgs/solid/redo.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/registered.svg b/public/fontawesome/svgs/solid/registered.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/registered.svg rename to public/fontawesome/svgs/solid/registered.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/reply-all.svg b/public/fontawesome/svgs/solid/reply-all.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/reply-all.svg rename to public/fontawesome/svgs/solid/reply-all.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/reply.svg b/public/fontawesome/svgs/solid/reply.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/reply.svg rename to public/fontawesome/svgs/solid/reply.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/retweet.svg b/public/fontawesome/svgs/solid/retweet.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/retweet.svg rename to public/fontawesome/svgs/solid/retweet.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/ribbon.svg b/public/fontawesome/svgs/solid/ribbon.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/ribbon.svg rename to public/fontawesome/svgs/solid/ribbon.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/road.svg b/public/fontawesome/svgs/solid/road.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/road.svg rename to public/fontawesome/svgs/solid/road.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/robot.svg b/public/fontawesome/svgs/solid/robot.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/robot.svg rename to public/fontawesome/svgs/solid/robot.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/rocket.svg b/public/fontawesome/svgs/solid/rocket.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/rocket.svg rename to public/fontawesome/svgs/solid/rocket.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/route.svg b/public/fontawesome/svgs/solid/route.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/route.svg rename to public/fontawesome/svgs/solid/route.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/rss-square.svg b/public/fontawesome/svgs/solid/rss-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/rss-square.svg rename to public/fontawesome/svgs/solid/rss-square.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/rss.svg b/public/fontawesome/svgs/solid/rss.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/rss.svg rename to public/fontawesome/svgs/solid/rss.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/ruble-sign.svg b/public/fontawesome/svgs/solid/ruble-sign.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/ruble-sign.svg rename to public/fontawesome/svgs/solid/ruble-sign.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/ruler-combined.svg b/public/fontawesome/svgs/solid/ruler-combined.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/ruler-combined.svg rename to public/fontawesome/svgs/solid/ruler-combined.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/ruler-horizontal.svg b/public/fontawesome/svgs/solid/ruler-horizontal.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/ruler-horizontal.svg rename to public/fontawesome/svgs/solid/ruler-horizontal.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/ruler-vertical.svg b/public/fontawesome/svgs/solid/ruler-vertical.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/ruler-vertical.svg rename to public/fontawesome/svgs/solid/ruler-vertical.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/ruler.svg b/public/fontawesome/svgs/solid/ruler.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/ruler.svg rename to public/fontawesome/svgs/solid/ruler.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/rupee-sign.svg b/public/fontawesome/svgs/solid/rupee-sign.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/rupee-sign.svg rename to public/fontawesome/svgs/solid/rupee-sign.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/sad-cry.svg b/public/fontawesome/svgs/solid/sad-cry.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/sad-cry.svg rename to public/fontawesome/svgs/solid/sad-cry.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/sad-tear.svg b/public/fontawesome/svgs/solid/sad-tear.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/sad-tear.svg rename to public/fontawesome/svgs/solid/sad-tear.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/save.svg b/public/fontawesome/svgs/solid/save.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/save.svg rename to public/fontawesome/svgs/solid/save.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/school.svg b/public/fontawesome/svgs/solid/school.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/school.svg rename to public/fontawesome/svgs/solid/school.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/screwdriver.svg b/public/fontawesome/svgs/solid/screwdriver.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/screwdriver.svg rename to public/fontawesome/svgs/solid/screwdriver.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/search-dollar.svg b/public/fontawesome/svgs/solid/search-dollar.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/search-dollar.svg rename to public/fontawesome/svgs/solid/search-dollar.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/search-location.svg b/public/fontawesome/svgs/solid/search-location.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/search-location.svg rename to public/fontawesome/svgs/solid/search-location.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/search-minus.svg b/public/fontawesome/svgs/solid/search-minus.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/search-minus.svg rename to public/fontawesome/svgs/solid/search-minus.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/search-plus.svg b/public/fontawesome/svgs/solid/search-plus.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/search-plus.svg rename to public/fontawesome/svgs/solid/search-plus.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/search.svg b/public/fontawesome/svgs/solid/search.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/search.svg rename to public/fontawesome/svgs/solid/search.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/seedling.svg b/public/fontawesome/svgs/solid/seedling.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/seedling.svg rename to public/fontawesome/svgs/solid/seedling.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/server.svg b/public/fontawesome/svgs/solid/server.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/server.svg rename to public/fontawesome/svgs/solid/server.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/shapes.svg b/public/fontawesome/svgs/solid/shapes.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/shapes.svg rename to public/fontawesome/svgs/solid/shapes.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/share-alt-square.svg b/public/fontawesome/svgs/solid/share-alt-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/share-alt-square.svg rename to public/fontawesome/svgs/solid/share-alt-square.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/share-alt.svg b/public/fontawesome/svgs/solid/share-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/share-alt.svg rename to public/fontawesome/svgs/solid/share-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/share-square.svg b/public/fontawesome/svgs/solid/share-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/share-square.svg rename to public/fontawesome/svgs/solid/share-square.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/share.svg b/public/fontawesome/svgs/solid/share.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/share.svg rename to public/fontawesome/svgs/solid/share.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/shekel-sign.svg b/public/fontawesome/svgs/solid/shekel-sign.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/shekel-sign.svg rename to public/fontawesome/svgs/solid/shekel-sign.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/shield-alt.svg b/public/fontawesome/svgs/solid/shield-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/shield-alt.svg rename to public/fontawesome/svgs/solid/shield-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/ship.svg b/public/fontawesome/svgs/solid/ship.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/ship.svg rename to public/fontawesome/svgs/solid/ship.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/shipping-fast.svg b/public/fontawesome/svgs/solid/shipping-fast.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/shipping-fast.svg rename to public/fontawesome/svgs/solid/shipping-fast.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/shoe-prints.svg b/public/fontawesome/svgs/solid/shoe-prints.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/shoe-prints.svg rename to public/fontawesome/svgs/solid/shoe-prints.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/shopping-bag.svg b/public/fontawesome/svgs/solid/shopping-bag.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/shopping-bag.svg rename to public/fontawesome/svgs/solid/shopping-bag.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/shopping-basket.svg b/public/fontawesome/svgs/solid/shopping-basket.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/shopping-basket.svg rename to public/fontawesome/svgs/solid/shopping-basket.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/shopping-cart.svg b/public/fontawesome/svgs/solid/shopping-cart.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/shopping-cart.svg rename to public/fontawesome/svgs/solid/shopping-cart.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/shower.svg b/public/fontawesome/svgs/solid/shower.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/shower.svg rename to public/fontawesome/svgs/solid/shower.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/shuttle-van.svg b/public/fontawesome/svgs/solid/shuttle-van.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/shuttle-van.svg rename to public/fontawesome/svgs/solid/shuttle-van.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/sign-in-alt.svg b/public/fontawesome/svgs/solid/sign-in-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/sign-in-alt.svg rename to public/fontawesome/svgs/solid/sign-in-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/sign-language.svg b/public/fontawesome/svgs/solid/sign-language.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/sign-language.svg rename to public/fontawesome/svgs/solid/sign-language.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/sign-out-alt.svg b/public/fontawesome/svgs/solid/sign-out-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/sign-out-alt.svg rename to public/fontawesome/svgs/solid/sign-out-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/sign.svg b/public/fontawesome/svgs/solid/sign.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/sign.svg rename to public/fontawesome/svgs/solid/sign.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/signal.svg b/public/fontawesome/svgs/solid/signal.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/signal.svg rename to public/fontawesome/svgs/solid/signal.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/signature.svg b/public/fontawesome/svgs/solid/signature.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/signature.svg rename to public/fontawesome/svgs/solid/signature.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/sitemap.svg b/public/fontawesome/svgs/solid/sitemap.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/sitemap.svg rename to public/fontawesome/svgs/solid/sitemap.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/skull.svg b/public/fontawesome/svgs/solid/skull.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/skull.svg rename to public/fontawesome/svgs/solid/skull.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/sliders-h.svg b/public/fontawesome/svgs/solid/sliders-h.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/sliders-h.svg rename to public/fontawesome/svgs/solid/sliders-h.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/smile-beam.svg b/public/fontawesome/svgs/solid/smile-beam.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/smile-beam.svg rename to public/fontawesome/svgs/solid/smile-beam.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/smile-wink.svg b/public/fontawesome/svgs/solid/smile-wink.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/smile-wink.svg rename to public/fontawesome/svgs/solid/smile-wink.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/smile.svg b/public/fontawesome/svgs/solid/smile.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/smile.svg rename to public/fontawesome/svgs/solid/smile.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/smoking-ban.svg b/public/fontawesome/svgs/solid/smoking-ban.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/smoking-ban.svg rename to public/fontawesome/svgs/solid/smoking-ban.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/smoking.svg b/public/fontawesome/svgs/solid/smoking.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/smoking.svg rename to public/fontawesome/svgs/solid/smoking.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/snowflake.svg b/public/fontawesome/svgs/solid/snowflake.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/snowflake.svg rename to public/fontawesome/svgs/solid/snowflake.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/socks.svg b/public/fontawesome/svgs/solid/socks.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/socks.svg rename to public/fontawesome/svgs/solid/socks.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/solar-panel.svg b/public/fontawesome/svgs/solid/solar-panel.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/solar-panel.svg rename to public/fontawesome/svgs/solid/solar-panel.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/sort-alpha-down.svg b/public/fontawesome/svgs/solid/sort-alpha-down.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/sort-alpha-down.svg rename to public/fontawesome/svgs/solid/sort-alpha-down.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/sort-alpha-up.svg b/public/fontawesome/svgs/solid/sort-alpha-up.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/sort-alpha-up.svg rename to public/fontawesome/svgs/solid/sort-alpha-up.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/sort-amount-down.svg b/public/fontawesome/svgs/solid/sort-amount-down.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/sort-amount-down.svg rename to public/fontawesome/svgs/solid/sort-amount-down.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/sort-amount-up.svg b/public/fontawesome/svgs/solid/sort-amount-up.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/sort-amount-up.svg rename to public/fontawesome/svgs/solid/sort-amount-up.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/sort-down.svg b/public/fontawesome/svgs/solid/sort-down.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/sort-down.svg rename to public/fontawesome/svgs/solid/sort-down.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/sort-numeric-down.svg b/public/fontawesome/svgs/solid/sort-numeric-down.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/sort-numeric-down.svg rename to public/fontawesome/svgs/solid/sort-numeric-down.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/sort-numeric-up.svg b/public/fontawesome/svgs/solid/sort-numeric-up.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/sort-numeric-up.svg rename to public/fontawesome/svgs/solid/sort-numeric-up.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/sort-up.svg b/public/fontawesome/svgs/solid/sort-up.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/sort-up.svg rename to public/fontawesome/svgs/solid/sort-up.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/sort.svg b/public/fontawesome/svgs/solid/sort.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/sort.svg rename to public/fontawesome/svgs/solid/sort.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/spa.svg b/public/fontawesome/svgs/solid/spa.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/spa.svg rename to public/fontawesome/svgs/solid/spa.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/space-shuttle.svg b/public/fontawesome/svgs/solid/space-shuttle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/space-shuttle.svg rename to public/fontawesome/svgs/solid/space-shuttle.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/spinner.svg b/public/fontawesome/svgs/solid/spinner.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/spinner.svg rename to public/fontawesome/svgs/solid/spinner.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/splotch.svg b/public/fontawesome/svgs/solid/splotch.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/splotch.svg rename to public/fontawesome/svgs/solid/splotch.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/spray-can.svg b/public/fontawesome/svgs/solid/spray-can.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/spray-can.svg rename to public/fontawesome/svgs/solid/spray-can.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/square-full.svg b/public/fontawesome/svgs/solid/square-full.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/square-full.svg rename to public/fontawesome/svgs/solid/square-full.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/square-root-alt.svg b/public/fontawesome/svgs/solid/square-root-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/square-root-alt.svg rename to public/fontawesome/svgs/solid/square-root-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/square.svg b/public/fontawesome/svgs/solid/square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/square.svg rename to public/fontawesome/svgs/solid/square.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/stamp.svg b/public/fontawesome/svgs/solid/stamp.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/stamp.svg rename to public/fontawesome/svgs/solid/stamp.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/star-and-crescent.svg b/public/fontawesome/svgs/solid/star-and-crescent.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/star-and-crescent.svg rename to public/fontawesome/svgs/solid/star-and-crescent.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/star-half-alt.svg b/public/fontawesome/svgs/solid/star-half-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/star-half-alt.svg rename to public/fontawesome/svgs/solid/star-half-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/star-half.svg b/public/fontawesome/svgs/solid/star-half.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/star-half.svg rename to public/fontawesome/svgs/solid/star-half.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/star-of-david.svg b/public/fontawesome/svgs/solid/star-of-david.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/star-of-david.svg rename to public/fontawesome/svgs/solid/star-of-david.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/star-of-life.svg b/public/fontawesome/svgs/solid/star-of-life.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/star-of-life.svg rename to public/fontawesome/svgs/solid/star-of-life.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/star.svg b/public/fontawesome/svgs/solid/star.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/star.svg rename to public/fontawesome/svgs/solid/star.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/step-backward.svg b/public/fontawesome/svgs/solid/step-backward.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/step-backward.svg rename to public/fontawesome/svgs/solid/step-backward.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/step-forward.svg b/public/fontawesome/svgs/solid/step-forward.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/step-forward.svg rename to public/fontawesome/svgs/solid/step-forward.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/stethoscope.svg b/public/fontawesome/svgs/solid/stethoscope.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/stethoscope.svg rename to public/fontawesome/svgs/solid/stethoscope.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/sticky-note.svg b/public/fontawesome/svgs/solid/sticky-note.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/sticky-note.svg rename to public/fontawesome/svgs/solid/sticky-note.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/stop-circle.svg b/public/fontawesome/svgs/solid/stop-circle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/stop-circle.svg rename to public/fontawesome/svgs/solid/stop-circle.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/stop.svg b/public/fontawesome/svgs/solid/stop.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/stop.svg rename to public/fontawesome/svgs/solid/stop.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/stopwatch.svg b/public/fontawesome/svgs/solid/stopwatch.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/stopwatch.svg rename to public/fontawesome/svgs/solid/stopwatch.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/store-alt.svg b/public/fontawesome/svgs/solid/store-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/store-alt.svg rename to public/fontawesome/svgs/solid/store-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/store.svg b/public/fontawesome/svgs/solid/store.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/store.svg rename to public/fontawesome/svgs/solid/store.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/stream.svg b/public/fontawesome/svgs/solid/stream.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/stream.svg rename to public/fontawesome/svgs/solid/stream.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/street-view.svg b/public/fontawesome/svgs/solid/street-view.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/street-view.svg rename to public/fontawesome/svgs/solid/street-view.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/strikethrough.svg b/public/fontawesome/svgs/solid/strikethrough.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/strikethrough.svg rename to public/fontawesome/svgs/solid/strikethrough.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/stroopwafel.svg b/public/fontawesome/svgs/solid/stroopwafel.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/stroopwafel.svg rename to public/fontawesome/svgs/solid/stroopwafel.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/subscript.svg b/public/fontawesome/svgs/solid/subscript.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/subscript.svg rename to public/fontawesome/svgs/solid/subscript.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/subway.svg b/public/fontawesome/svgs/solid/subway.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/subway.svg rename to public/fontawesome/svgs/solid/subway.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/suitcase-rolling.svg b/public/fontawesome/svgs/solid/suitcase-rolling.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/suitcase-rolling.svg rename to public/fontawesome/svgs/solid/suitcase-rolling.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/suitcase.svg b/public/fontawesome/svgs/solid/suitcase.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/suitcase.svg rename to public/fontawesome/svgs/solid/suitcase.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/sun.svg b/public/fontawesome/svgs/solid/sun.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/sun.svg rename to public/fontawesome/svgs/solid/sun.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/superscript.svg b/public/fontawesome/svgs/solid/superscript.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/superscript.svg rename to public/fontawesome/svgs/solid/superscript.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/surprise.svg b/public/fontawesome/svgs/solid/surprise.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/surprise.svg rename to public/fontawesome/svgs/solid/surprise.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/swatchbook.svg b/public/fontawesome/svgs/solid/swatchbook.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/swatchbook.svg rename to public/fontawesome/svgs/solid/swatchbook.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/swimmer.svg b/public/fontawesome/svgs/solid/swimmer.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/swimmer.svg rename to public/fontawesome/svgs/solid/swimmer.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/swimming-pool.svg b/public/fontawesome/svgs/solid/swimming-pool.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/swimming-pool.svg rename to public/fontawesome/svgs/solid/swimming-pool.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/synagogue.svg b/public/fontawesome/svgs/solid/synagogue.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/synagogue.svg rename to public/fontawesome/svgs/solid/synagogue.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/sync-alt.svg b/public/fontawesome/svgs/solid/sync-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/sync-alt.svg rename to public/fontawesome/svgs/solid/sync-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/sync.svg b/public/fontawesome/svgs/solid/sync.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/sync.svg rename to public/fontawesome/svgs/solid/sync.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/syringe.svg b/public/fontawesome/svgs/solid/syringe.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/syringe.svg rename to public/fontawesome/svgs/solid/syringe.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/table-tennis.svg b/public/fontawesome/svgs/solid/table-tennis.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/table-tennis.svg rename to public/fontawesome/svgs/solid/table-tennis.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/table.svg b/public/fontawesome/svgs/solid/table.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/table.svg rename to public/fontawesome/svgs/solid/table.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/tablet-alt.svg b/public/fontawesome/svgs/solid/tablet-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/tablet-alt.svg rename to public/fontawesome/svgs/solid/tablet-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/tablet.svg b/public/fontawesome/svgs/solid/tablet.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/tablet.svg rename to public/fontawesome/svgs/solid/tablet.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/tablets.svg b/public/fontawesome/svgs/solid/tablets.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/tablets.svg rename to public/fontawesome/svgs/solid/tablets.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/tachometer-alt.svg b/public/fontawesome/svgs/solid/tachometer-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/tachometer-alt.svg rename to public/fontawesome/svgs/solid/tachometer-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/tag.svg b/public/fontawesome/svgs/solid/tag.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/tag.svg rename to public/fontawesome/svgs/solid/tag.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/tags.svg b/public/fontawesome/svgs/solid/tags.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/tags.svg rename to public/fontawesome/svgs/solid/tags.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/tape.svg b/public/fontawesome/svgs/solid/tape.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/tape.svg rename to public/fontawesome/svgs/solid/tape.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/tasks.svg b/public/fontawesome/svgs/solid/tasks.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/tasks.svg rename to public/fontawesome/svgs/solid/tasks.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/taxi.svg b/public/fontawesome/svgs/solid/taxi.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/taxi.svg rename to public/fontawesome/svgs/solid/taxi.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/teeth-open.svg b/public/fontawesome/svgs/solid/teeth-open.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/teeth-open.svg rename to public/fontawesome/svgs/solid/teeth-open.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/teeth.svg b/public/fontawesome/svgs/solid/teeth.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/teeth.svg rename to public/fontawesome/svgs/solid/teeth.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/terminal.svg b/public/fontawesome/svgs/solid/terminal.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/terminal.svg rename to public/fontawesome/svgs/solid/terminal.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/text-height.svg b/public/fontawesome/svgs/solid/text-height.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/text-height.svg rename to public/fontawesome/svgs/solid/text-height.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/text-width.svg b/public/fontawesome/svgs/solid/text-width.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/text-width.svg rename to public/fontawesome/svgs/solid/text-width.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/th-large.svg b/public/fontawesome/svgs/solid/th-large.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/th-large.svg rename to public/fontawesome/svgs/solid/th-large.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/th-list.svg b/public/fontawesome/svgs/solid/th-list.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/th-list.svg rename to public/fontawesome/svgs/solid/th-list.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/th.svg b/public/fontawesome/svgs/solid/th.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/th.svg rename to public/fontawesome/svgs/solid/th.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/theater-masks.svg b/public/fontawesome/svgs/solid/theater-masks.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/theater-masks.svg rename to public/fontawesome/svgs/solid/theater-masks.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/thermometer-empty.svg b/public/fontawesome/svgs/solid/thermometer-empty.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/thermometer-empty.svg rename to public/fontawesome/svgs/solid/thermometer-empty.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/thermometer-full.svg b/public/fontawesome/svgs/solid/thermometer-full.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/thermometer-full.svg rename to public/fontawesome/svgs/solid/thermometer-full.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/thermometer-half.svg b/public/fontawesome/svgs/solid/thermometer-half.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/thermometer-half.svg rename to public/fontawesome/svgs/solid/thermometer-half.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/thermometer-quarter.svg b/public/fontawesome/svgs/solid/thermometer-quarter.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/thermometer-quarter.svg rename to public/fontawesome/svgs/solid/thermometer-quarter.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/thermometer-three-quarters.svg b/public/fontawesome/svgs/solid/thermometer-three-quarters.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/thermometer-three-quarters.svg rename to public/fontawesome/svgs/solid/thermometer-three-quarters.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/thermometer.svg b/public/fontawesome/svgs/solid/thermometer.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/thermometer.svg rename to public/fontawesome/svgs/solid/thermometer.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/thumbs-down.svg b/public/fontawesome/svgs/solid/thumbs-down.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/thumbs-down.svg rename to public/fontawesome/svgs/solid/thumbs-down.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/thumbs-up.svg b/public/fontawesome/svgs/solid/thumbs-up.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/thumbs-up.svg rename to public/fontawesome/svgs/solid/thumbs-up.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/thumbtack.svg b/public/fontawesome/svgs/solid/thumbtack.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/thumbtack.svg rename to public/fontawesome/svgs/solid/thumbtack.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/ticket-alt.svg b/public/fontawesome/svgs/solid/ticket-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/ticket-alt.svg rename to public/fontawesome/svgs/solid/ticket-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/times-circle.svg b/public/fontawesome/svgs/solid/times-circle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/times-circle.svg rename to public/fontawesome/svgs/solid/times-circle.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/times.svg b/public/fontawesome/svgs/solid/times.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/times.svg rename to public/fontawesome/svgs/solid/times.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/tint-slash.svg b/public/fontawesome/svgs/solid/tint-slash.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/tint-slash.svg rename to public/fontawesome/svgs/solid/tint-slash.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/tint.svg b/public/fontawesome/svgs/solid/tint.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/tint.svg rename to public/fontawesome/svgs/solid/tint.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/tired.svg b/public/fontawesome/svgs/solid/tired.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/tired.svg rename to public/fontawesome/svgs/solid/tired.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/toggle-off.svg b/public/fontawesome/svgs/solid/toggle-off.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/toggle-off.svg rename to public/fontawesome/svgs/solid/toggle-off.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/toggle-on.svg b/public/fontawesome/svgs/solid/toggle-on.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/toggle-on.svg rename to public/fontawesome/svgs/solid/toggle-on.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/toolbox.svg b/public/fontawesome/svgs/solid/toolbox.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/toolbox.svg rename to public/fontawesome/svgs/solid/toolbox.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/tooth.svg b/public/fontawesome/svgs/solid/tooth.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/tooth.svg rename to public/fontawesome/svgs/solid/tooth.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/torah.svg b/public/fontawesome/svgs/solid/torah.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/torah.svg rename to public/fontawesome/svgs/solid/torah.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/torii-gate.svg b/public/fontawesome/svgs/solid/torii-gate.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/torii-gate.svg rename to public/fontawesome/svgs/solid/torii-gate.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/trademark.svg b/public/fontawesome/svgs/solid/trademark.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/trademark.svg rename to public/fontawesome/svgs/solid/trademark.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/traffic-light.svg b/public/fontawesome/svgs/solid/traffic-light.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/traffic-light.svg rename to public/fontawesome/svgs/solid/traffic-light.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/train.svg b/public/fontawesome/svgs/solid/train.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/train.svg rename to public/fontawesome/svgs/solid/train.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/transgender-alt.svg b/public/fontawesome/svgs/solid/transgender-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/transgender-alt.svg rename to public/fontawesome/svgs/solid/transgender-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/transgender.svg b/public/fontawesome/svgs/solid/transgender.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/transgender.svg rename to public/fontawesome/svgs/solid/transgender.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/trash-alt.svg b/public/fontawesome/svgs/solid/trash-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/trash-alt.svg rename to public/fontawesome/svgs/solid/trash-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/trash.svg b/public/fontawesome/svgs/solid/trash.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/trash.svg rename to public/fontawesome/svgs/solid/trash.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/tree.svg b/public/fontawesome/svgs/solid/tree.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/tree.svg rename to public/fontawesome/svgs/solid/tree.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/trophy.svg b/public/fontawesome/svgs/solid/trophy.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/trophy.svg rename to public/fontawesome/svgs/solid/trophy.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/truck-loading.svg b/public/fontawesome/svgs/solid/truck-loading.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/truck-loading.svg rename to public/fontawesome/svgs/solid/truck-loading.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/truck-monster.svg b/public/fontawesome/svgs/solid/truck-monster.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/truck-monster.svg rename to public/fontawesome/svgs/solid/truck-monster.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/truck-moving.svg b/public/fontawesome/svgs/solid/truck-moving.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/truck-moving.svg rename to public/fontawesome/svgs/solid/truck-moving.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/truck-pickup.svg b/public/fontawesome/svgs/solid/truck-pickup.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/truck-pickup.svg rename to public/fontawesome/svgs/solid/truck-pickup.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/truck.svg b/public/fontawesome/svgs/solid/truck.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/truck.svg rename to public/fontawesome/svgs/solid/truck.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/tshirt.svg b/public/fontawesome/svgs/solid/tshirt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/tshirt.svg rename to public/fontawesome/svgs/solid/tshirt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/tty.svg b/public/fontawesome/svgs/solid/tty.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/tty.svg rename to public/fontawesome/svgs/solid/tty.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/tv.svg b/public/fontawesome/svgs/solid/tv.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/tv.svg rename to public/fontawesome/svgs/solid/tv.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/umbrella-beach.svg b/public/fontawesome/svgs/solid/umbrella-beach.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/umbrella-beach.svg rename to public/fontawesome/svgs/solid/umbrella-beach.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/umbrella.svg b/public/fontawesome/svgs/solid/umbrella.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/umbrella.svg rename to public/fontawesome/svgs/solid/umbrella.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/underline.svg b/public/fontawesome/svgs/solid/underline.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/underline.svg rename to public/fontawesome/svgs/solid/underline.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/undo-alt.svg b/public/fontawesome/svgs/solid/undo-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/undo-alt.svg rename to public/fontawesome/svgs/solid/undo-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/undo.svg b/public/fontawesome/svgs/solid/undo.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/undo.svg rename to public/fontawesome/svgs/solid/undo.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/universal-access.svg b/public/fontawesome/svgs/solid/universal-access.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/universal-access.svg rename to public/fontawesome/svgs/solid/universal-access.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/university.svg b/public/fontawesome/svgs/solid/university.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/university.svg rename to public/fontawesome/svgs/solid/university.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/unlink.svg b/public/fontawesome/svgs/solid/unlink.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/unlink.svg rename to public/fontawesome/svgs/solid/unlink.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/unlock-alt.svg b/public/fontawesome/svgs/solid/unlock-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/unlock-alt.svg rename to public/fontawesome/svgs/solid/unlock-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/unlock.svg b/public/fontawesome/svgs/solid/unlock.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/unlock.svg rename to public/fontawesome/svgs/solid/unlock.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/upload.svg b/public/fontawesome/svgs/solid/upload.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/upload.svg rename to public/fontawesome/svgs/solid/upload.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/user-alt-slash.svg b/public/fontawesome/svgs/solid/user-alt-slash.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/user-alt-slash.svg rename to public/fontawesome/svgs/solid/user-alt-slash.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/user-alt.svg b/public/fontawesome/svgs/solid/user-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/user-alt.svg rename to public/fontawesome/svgs/solid/user-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/user-astronaut.svg b/public/fontawesome/svgs/solid/user-astronaut.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/user-astronaut.svg rename to public/fontawesome/svgs/solid/user-astronaut.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/user-check.svg b/public/fontawesome/svgs/solid/user-check.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/user-check.svg rename to public/fontawesome/svgs/solid/user-check.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/user-circle.svg b/public/fontawesome/svgs/solid/user-circle.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/user-circle.svg rename to public/fontawesome/svgs/solid/user-circle.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/user-clock.svg b/public/fontawesome/svgs/solid/user-clock.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/user-clock.svg rename to public/fontawesome/svgs/solid/user-clock.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/user-cog.svg b/public/fontawesome/svgs/solid/user-cog.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/user-cog.svg rename to public/fontawesome/svgs/solid/user-cog.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/user-edit.svg b/public/fontawesome/svgs/solid/user-edit.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/user-edit.svg rename to public/fontawesome/svgs/solid/user-edit.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/user-friends.svg b/public/fontawesome/svgs/solid/user-friends.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/user-friends.svg rename to public/fontawesome/svgs/solid/user-friends.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/user-graduate.svg b/public/fontawesome/svgs/solid/user-graduate.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/user-graduate.svg rename to public/fontawesome/svgs/solid/user-graduate.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/user-lock.svg b/public/fontawesome/svgs/solid/user-lock.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/user-lock.svg rename to public/fontawesome/svgs/solid/user-lock.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/user-md.svg b/public/fontawesome/svgs/solid/user-md.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/user-md.svg rename to public/fontawesome/svgs/solid/user-md.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/user-minus.svg b/public/fontawesome/svgs/solid/user-minus.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/user-minus.svg rename to public/fontawesome/svgs/solid/user-minus.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/user-ninja.svg b/public/fontawesome/svgs/solid/user-ninja.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/user-ninja.svg rename to public/fontawesome/svgs/solid/user-ninja.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/user-plus.svg b/public/fontawesome/svgs/solid/user-plus.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/user-plus.svg rename to public/fontawesome/svgs/solid/user-plus.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/user-secret.svg b/public/fontawesome/svgs/solid/user-secret.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/user-secret.svg rename to public/fontawesome/svgs/solid/user-secret.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/user-shield.svg b/public/fontawesome/svgs/solid/user-shield.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/user-shield.svg rename to public/fontawesome/svgs/solid/user-shield.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/user-slash.svg b/public/fontawesome/svgs/solid/user-slash.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/user-slash.svg rename to public/fontawesome/svgs/solid/user-slash.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/user-tag.svg b/public/fontawesome/svgs/solid/user-tag.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/user-tag.svg rename to public/fontawesome/svgs/solid/user-tag.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/user-tie.svg b/public/fontawesome/svgs/solid/user-tie.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/user-tie.svg rename to public/fontawesome/svgs/solid/user-tie.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/user-times.svg b/public/fontawesome/svgs/solid/user-times.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/user-times.svg rename to public/fontawesome/svgs/solid/user-times.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/user.svg b/public/fontawesome/svgs/solid/user.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/user.svg rename to public/fontawesome/svgs/solid/user.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/users-cog.svg b/public/fontawesome/svgs/solid/users-cog.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/users-cog.svg rename to public/fontawesome/svgs/solid/users-cog.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/users.svg b/public/fontawesome/svgs/solid/users.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/users.svg rename to public/fontawesome/svgs/solid/users.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/utensil-spoon.svg b/public/fontawesome/svgs/solid/utensil-spoon.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/utensil-spoon.svg rename to public/fontawesome/svgs/solid/utensil-spoon.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/utensils.svg b/public/fontawesome/svgs/solid/utensils.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/utensils.svg rename to public/fontawesome/svgs/solid/utensils.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/vector-square.svg b/public/fontawesome/svgs/solid/vector-square.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/vector-square.svg rename to public/fontawesome/svgs/solid/vector-square.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/venus-double.svg b/public/fontawesome/svgs/solid/venus-double.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/venus-double.svg rename to public/fontawesome/svgs/solid/venus-double.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/venus-mars.svg b/public/fontawesome/svgs/solid/venus-mars.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/venus-mars.svg rename to public/fontawesome/svgs/solid/venus-mars.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/venus.svg b/public/fontawesome/svgs/solid/venus.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/venus.svg rename to public/fontawesome/svgs/solid/venus.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/vial.svg b/public/fontawesome/svgs/solid/vial.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/vial.svg rename to public/fontawesome/svgs/solid/vial.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/vials.svg b/public/fontawesome/svgs/solid/vials.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/vials.svg rename to public/fontawesome/svgs/solid/vials.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/video-slash.svg b/public/fontawesome/svgs/solid/video-slash.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/video-slash.svg rename to public/fontawesome/svgs/solid/video-slash.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/video.svg b/public/fontawesome/svgs/solid/video.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/video.svg rename to public/fontawesome/svgs/solid/video.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/vihara.svg b/public/fontawesome/svgs/solid/vihara.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/vihara.svg rename to public/fontawesome/svgs/solid/vihara.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/volleyball-ball.svg b/public/fontawesome/svgs/solid/volleyball-ball.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/volleyball-ball.svg rename to public/fontawesome/svgs/solid/volleyball-ball.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/volume-down.svg b/public/fontawesome/svgs/solid/volume-down.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/volume-down.svg rename to public/fontawesome/svgs/solid/volume-down.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/volume-off.svg b/public/fontawesome/svgs/solid/volume-off.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/volume-off.svg rename to public/fontawesome/svgs/solid/volume-off.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/volume-up.svg b/public/fontawesome/svgs/solid/volume-up.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/volume-up.svg rename to public/fontawesome/svgs/solid/volume-up.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/walking.svg b/public/fontawesome/svgs/solid/walking.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/walking.svg rename to public/fontawesome/svgs/solid/walking.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/wallet.svg b/public/fontawesome/svgs/solid/wallet.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/wallet.svg rename to public/fontawesome/svgs/solid/wallet.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/warehouse.svg b/public/fontawesome/svgs/solid/warehouse.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/warehouse.svg rename to public/fontawesome/svgs/solid/warehouse.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/weight-hanging.svg b/public/fontawesome/svgs/solid/weight-hanging.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/weight-hanging.svg rename to public/fontawesome/svgs/solid/weight-hanging.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/weight.svg b/public/fontawesome/svgs/solid/weight.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/weight.svg rename to public/fontawesome/svgs/solid/weight.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/wheelchair.svg b/public/fontawesome/svgs/solid/wheelchair.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/wheelchair.svg rename to public/fontawesome/svgs/solid/wheelchair.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/wifi.svg b/public/fontawesome/svgs/solid/wifi.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/wifi.svg rename to public/fontawesome/svgs/solid/wifi.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/window-close.svg b/public/fontawesome/svgs/solid/window-close.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/window-close.svg rename to public/fontawesome/svgs/solid/window-close.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/window-maximize.svg b/public/fontawesome/svgs/solid/window-maximize.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/window-maximize.svg rename to public/fontawesome/svgs/solid/window-maximize.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/window-minimize.svg b/public/fontawesome/svgs/solid/window-minimize.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/window-minimize.svg rename to public/fontawesome/svgs/solid/window-minimize.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/window-restore.svg b/public/fontawesome/svgs/solid/window-restore.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/window-restore.svg rename to public/fontawesome/svgs/solid/window-restore.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/wine-glass-alt.svg b/public/fontawesome/svgs/solid/wine-glass-alt.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/wine-glass-alt.svg rename to public/fontawesome/svgs/solid/wine-glass-alt.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/wine-glass.svg b/public/fontawesome/svgs/solid/wine-glass.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/wine-glass.svg rename to public/fontawesome/svgs/solid/wine-glass.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/won-sign.svg b/public/fontawesome/svgs/solid/won-sign.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/won-sign.svg rename to public/fontawesome/svgs/solid/won-sign.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/wrench.svg b/public/fontawesome/svgs/solid/wrench.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/wrench.svg rename to public/fontawesome/svgs/solid/wrench.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/x-ray.svg b/public/fontawesome/svgs/solid/x-ray.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/x-ray.svg rename to public/fontawesome/svgs/solid/x-ray.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/yen-sign.svg b/public/fontawesome/svgs/solid/yen-sign.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/yen-sign.svg rename to public/fontawesome/svgs/solid/yen-sign.svg diff --git a/src/Resources/public/fontawesome/svgs/solid/yin-yang.svg b/public/fontawesome/svgs/solid/yin-yang.svg similarity index 100% rename from src/Resources/public/fontawesome/svgs/solid/yin-yang.svg rename to public/fontawesome/svgs/solid/yin-yang.svg diff --git a/src/Resources/public/fontawesome/webfonts/fa-brands-400.eot b/public/fontawesome/webfonts/fa-brands-400.eot similarity index 100% rename from src/Resources/public/fontawesome/webfonts/fa-brands-400.eot rename to public/fontawesome/webfonts/fa-brands-400.eot diff --git a/src/Resources/public/fontawesome/webfonts/fa-brands-400.svg b/public/fontawesome/webfonts/fa-brands-400.svg similarity index 100% rename from src/Resources/public/fontawesome/webfonts/fa-brands-400.svg rename to public/fontawesome/webfonts/fa-brands-400.svg diff --git a/src/Resources/public/fontawesome/webfonts/fa-brands-400.ttf b/public/fontawesome/webfonts/fa-brands-400.ttf similarity index 100% rename from src/Resources/public/fontawesome/webfonts/fa-brands-400.ttf rename to public/fontawesome/webfonts/fa-brands-400.ttf diff --git a/src/Resources/public/fontawesome/webfonts/fa-brands-400.woff b/public/fontawesome/webfonts/fa-brands-400.woff similarity index 100% rename from src/Resources/public/fontawesome/webfonts/fa-brands-400.woff rename to public/fontawesome/webfonts/fa-brands-400.woff diff --git a/src/Resources/public/fontawesome/webfonts/fa-brands-400.woff2 b/public/fontawesome/webfonts/fa-brands-400.woff2 similarity index 100% rename from src/Resources/public/fontawesome/webfonts/fa-brands-400.woff2 rename to public/fontawesome/webfonts/fa-brands-400.woff2 diff --git a/src/Resources/public/fontawesome/webfonts/fa-regular-400.eot b/public/fontawesome/webfonts/fa-regular-400.eot similarity index 100% rename from src/Resources/public/fontawesome/webfonts/fa-regular-400.eot rename to public/fontawesome/webfonts/fa-regular-400.eot diff --git a/src/Resources/public/fontawesome/webfonts/fa-regular-400.svg b/public/fontawesome/webfonts/fa-regular-400.svg similarity index 100% rename from src/Resources/public/fontawesome/webfonts/fa-regular-400.svg rename to public/fontawesome/webfonts/fa-regular-400.svg diff --git a/src/Resources/public/fontawesome/webfonts/fa-regular-400.ttf b/public/fontawesome/webfonts/fa-regular-400.ttf similarity index 100% rename from src/Resources/public/fontawesome/webfonts/fa-regular-400.ttf rename to public/fontawesome/webfonts/fa-regular-400.ttf diff --git a/src/Resources/public/fontawesome/webfonts/fa-regular-400.woff b/public/fontawesome/webfonts/fa-regular-400.woff similarity index 100% rename from src/Resources/public/fontawesome/webfonts/fa-regular-400.woff rename to public/fontawesome/webfonts/fa-regular-400.woff diff --git a/src/Resources/public/fontawesome/webfonts/fa-regular-400.woff2 b/public/fontawesome/webfonts/fa-regular-400.woff2 similarity index 100% rename from src/Resources/public/fontawesome/webfonts/fa-regular-400.woff2 rename to public/fontawesome/webfonts/fa-regular-400.woff2 diff --git a/src/Resources/public/fontawesome/webfonts/fa-solid-900.eot b/public/fontawesome/webfonts/fa-solid-900.eot similarity index 100% rename from src/Resources/public/fontawesome/webfonts/fa-solid-900.eot rename to public/fontawesome/webfonts/fa-solid-900.eot diff --git a/src/Resources/public/fontawesome/webfonts/fa-solid-900.svg b/public/fontawesome/webfonts/fa-solid-900.svg similarity index 100% rename from src/Resources/public/fontawesome/webfonts/fa-solid-900.svg rename to public/fontawesome/webfonts/fa-solid-900.svg diff --git a/src/Resources/public/fontawesome/webfonts/fa-solid-900.ttf b/public/fontawesome/webfonts/fa-solid-900.ttf similarity index 100% rename from src/Resources/public/fontawesome/webfonts/fa-solid-900.ttf rename to public/fontawesome/webfonts/fa-solid-900.ttf diff --git a/src/Resources/public/fontawesome/webfonts/fa-solid-900.woff b/public/fontawesome/webfonts/fa-solid-900.woff similarity index 100% rename from src/Resources/public/fontawesome/webfonts/fa-solid-900.woff rename to public/fontawesome/webfonts/fa-solid-900.woff diff --git a/src/Resources/public/fontawesome/webfonts/fa-solid-900.woff2 b/public/fontawesome/webfonts/fa-solid-900.woff2 similarity index 100% rename from src/Resources/public/fontawesome/webfonts/fa-solid-900.woff2 rename to public/fontawesome/webfonts/fa-solid-900.woff2 diff --git a/src/Resources/public/fonts/Cabin/OFL.txt b/public/fonts/Cabin/OFL.txt similarity index 100% rename from src/Resources/public/fonts/Cabin/OFL.txt rename to public/fonts/Cabin/OFL.txt diff --git a/src/Resources/public/fonts/Cabin/cabin-regular-webfont.eot b/public/fonts/Cabin/cabin-regular-webfont.eot similarity index 100% rename from src/Resources/public/fonts/Cabin/cabin-regular-webfont.eot rename to public/fonts/Cabin/cabin-regular-webfont.eot diff --git a/src/Resources/public/fonts/Cabin/cabin-regular-webfont.ttf b/public/fonts/Cabin/cabin-regular-webfont.ttf similarity index 100% rename from src/Resources/public/fonts/Cabin/cabin-regular-webfont.ttf rename to public/fonts/Cabin/cabin-regular-webfont.ttf diff --git a/src/Resources/public/fonts/Cabin/cabin-regular-webfont.woff b/public/fonts/Cabin/cabin-regular-webfont.woff similarity index 100% rename from src/Resources/public/fonts/Cabin/cabin-regular-webfont.woff rename to public/fonts/Cabin/cabin-regular-webfont.woff diff --git a/src/Resources/public/fonts/Cabin/cabin-regular-webfont.woff2 b/public/fonts/Cabin/cabin-regular-webfont.woff2 similarity index 100% rename from src/Resources/public/fonts/Cabin/cabin-regular-webfont.woff2 rename to public/fonts/Cabin/cabin-regular-webfont.woff2 diff --git a/src/Resources/public/fonts/Muli/OFL.txt b/public/fonts/Muli/OFL.txt similarity index 100% rename from src/Resources/public/fonts/Muli/OFL.txt rename to public/fonts/Muli/OFL.txt diff --git a/src/Resources/public/fonts/Muli/muli-regular-webfont.eot b/public/fonts/Muli/muli-regular-webfont.eot similarity index 100% rename from src/Resources/public/fonts/Muli/muli-regular-webfont.eot rename to public/fonts/Muli/muli-regular-webfont.eot diff --git a/src/Resources/public/fonts/Muli/muli-regular-webfont.ttf b/public/fonts/Muli/muli-regular-webfont.ttf similarity index 100% rename from src/Resources/public/fonts/Muli/muli-regular-webfont.ttf rename to public/fonts/Muli/muli-regular-webfont.ttf diff --git a/src/Resources/public/fonts/Muli/muli-regular-webfont.woff b/public/fonts/Muli/muli-regular-webfont.woff similarity index 100% rename from src/Resources/public/fonts/Muli/muli-regular-webfont.woff rename to public/fonts/Muli/muli-regular-webfont.woff diff --git a/src/Resources/public/fonts/Muli/muli-regular-webfont.woff2 b/public/fonts/Muli/muli-regular-webfont.woff2 similarity index 100% rename from src/Resources/public/fonts/Muli/muli-regular-webfont.woff2 rename to public/fonts/Muli/muli-regular-webfont.woff2 diff --git a/public/img/ODD_Logo.png b/public/img/ODD_Logo.png new file mode 100644 index 0000000..ad41c5b Binary files /dev/null and b/public/img/ODD_Logo.png differ diff --git a/src/Resources/public/js/headroom.min.js b/public/js/headroom.min.js similarity index 100% rename from src/Resources/public/js/headroom.min.js rename to public/js/headroom.min.js diff --git a/src/Resources/public/js/scripts.js b/public/js/scripts.js similarity index 99% rename from src/Resources/public/js/scripts.js rename to public/js/scripts.js index a2d7b64..921df1e 100644 --- a/src/Resources/public/js/scripts.js +++ b/public/js/scripts.js @@ -71,7 +71,7 @@ jQuery(document).ready(function($) { $('.navbar .collapse.show').removeClass('show'); }); - if( $(".nav-container").hasClass("sloping") && $("#header .headerImage").length == 0 ) { + if( $(".nav-container").hasClass("sloping") && $("#header .header-image").length == 0 ) { $("#container").addClass("sloping"); } @@ -114,4 +114,4 @@ jQuery(document).ready(function($) { $(this).next().text( $(this).val().replace("C:\\fakepath\\","") ); }); - }); \ No newline at end of file + }); diff --git a/src/Resources/public/js/scripts.min.js b/public/js/scripts.min.js similarity index 54% rename from src/Resources/public/js/scripts.min.js rename to public/js/scripts.min.js index 7f52689..e81e3a4 100644 --- a/src/Resources/public/js/scripts.min.js +++ b/public/js/scripts.min.js @@ -1 +1 @@ -jQuery(document).ready(function($){$(window).scroll(function(){scrollPos=$(document).scrollTop();$("footer .toplink").addClass("active");if(scrollPos<=500){$("footer .toplink").removeClass("active")}});$(document).on("click","footer .toplink",function(event){event.preventDefault();$("html, body").animate({scrollTop:0},1e3)});$("a[href*=\\#]").on("click",function(event){var href=$(this).attr("href");href=href.substr(0,href.indexOf("#"));href=href.replace("./","");var path=window.location.pathname;path=path.replace("/","");if($(this).attr("target")!="_blank"&&path==href){event.preventDefault();$("html,body").animate({scrollTop:$(this.hash).offset().top},1500)}});$("input").focus(function(){var element=$(this);if(element.offset().top-$(window).scrollTop()<115){$("html, body").animate({scrollTop:element.offset().top-130},500)}});var scrollPos=$(window).scrollTop();if(scrollPos>0){$(".nav-container").addClass("stuck")}else{$(".nav-container").removeClass("stuck")}$(window).scroll(function(){var scrollPos=$(window).scrollTop();if(scrollPos>0){$(".nav-container").addClass("stuck")}else{$(".nav-container").removeClass("stuck")}});$("#header .navbar ul li a").on("click",function(){$(".navbar .collapse.show").removeClass("show")});if($(".nav-container").hasClass("sloping")&&$("#header .headerImage").length==0){$("#container").addClass("sloping")}$(".dropdown-toggle").on("click",function(e){$(this).next("ul").toggle();e.stopPropagation();e.preventDefault()});if($("#header .nav-container").length>0&&typeof Headroom!=="undefined"){var myElement=document.querySelector("#header .nav-container");var headroom=new Headroom(myElement,{offset:600});headroom.init()}$(".mod_bs_navbar").on("touchstart","a.submenu:not(.is-active), strong.submenu:not(.is-active)",function(e){$(".is-active").removeClass("is-active");if($(this).parent().parent().hasClass("level_1"))$(".dropdown-menu:visible").toggle();if($(this).parent().parent().hasClass("level_2"))$(".level_2 .dropdown-menu:visible").toggle();$(this).addClass("is-active");$(this).find("~ .dropdown-menu").toggle();e.preventDefault()});$(".slider-control .slider-prev").html('');$(".slider-control .slider-next").html('');$('input[type="file"]').on("change",function(){$(this).next().text($(this).val().replace("C:\\fakepath\\",""))})}); \ No newline at end of file +jQuery(document).ready(function($){$(window).scroll(function(){scrollPos=$(document).scrollTop();$("footer .toplink").addClass("active");if(scrollPos<=500){$("footer .toplink").removeClass("active")}});$(document).on("click","footer .toplink",function(event){event.preventDefault();$("html, body").animate({scrollTop:0},1e3)});$("a[href*=\\#]").on("click",function(event){var href=$(this).attr("href");href=href.substr(0,href.indexOf("#"));href=href.replace("./","");var path=window.location.pathname;path=path.replace("/","");if($(this).attr("target")!="_blank"&&path==href){event.preventDefault();$("html,body").animate({scrollTop:$(this.hash).offset().top},1500)}});$("input").focus(function(){var element=$(this);if(element.offset().top-$(window).scrollTop()<115){$("html, body").animate({scrollTop:element.offset().top-130},500)}});var scrollPos=$(window).scrollTop();if(scrollPos>0){$(".nav-container").addClass("stuck")}else{$(".nav-container").removeClass("stuck")}$(window).scroll(function(){var scrollPos=$(window).scrollTop();if(scrollPos>0){$(".nav-container").addClass("stuck")}else{$(".nav-container").removeClass("stuck")}});$("#header .navbar ul li a").on("click",function(){$(".navbar .collapse.show").removeClass("show")});if($(".nav-container").hasClass("sloping")&&$("#header .header-image").length==0){$("#container").addClass("sloping")}$(".dropdown-toggle").on("click",function(e){$(this).next("ul").toggle();e.stopPropagation();e.preventDefault()});if($("#header .nav-container").length>0&&typeof Headroom!=="undefined"){var myElement=document.querySelector("#header .nav-container");var headroom=new Headroom(myElement,{offset:600});headroom.init()}$(".mod_bs_navbar").on("touchstart","a.submenu:not(.is-active), strong.submenu:not(.is-active)",function(e){$(".is-active").removeClass("is-active");if($(this).parent().parent().hasClass("level_1"))$(".dropdown-menu:visible").toggle();if($(this).parent().parent().hasClass("level_2"))$(".level_2 .dropdown-menu:visible").toggle();$(this).addClass("is-active");$(this).find("~ .dropdown-menu").toggle();e.preventDefault()});$(".slider-control .slider-prev").html('');$(".slider-control .slider-next").html('');$('input[type="file"]').on("change",function(){$(this).next().text($(this).val().replace("C:\\fakepath\\",""))})}); \ No newline at end of file diff --git a/src/Resources/public/scss/_odd_colors.scss b/public/scss/_odd_colors.scss similarity index 100% rename from src/Resources/public/scss/_odd_colors.scss rename to public/scss/_odd_colors.scss diff --git a/src/Resources/public/scss/_odd_variables.scss b/public/scss/_odd_variables.scss similarity index 100% rename from src/Resources/public/scss/_odd_variables.scss rename to public/scss/_odd_variables.scss diff --git a/src/Resources/public/scss/backend.css b/public/scss/backend.css similarity index 100% rename from src/Resources/public/scss/backend.css rename to public/scss/backend.css diff --git a/src/Resources/public/scss/color_schemes/odd_blue_colors.scss b/public/scss/color_schemes/odd_blue_colors.scss similarity index 100% rename from src/Resources/public/scss/color_schemes/odd_blue_colors.scss rename to public/scss/color_schemes/odd_blue_colors.scss diff --git a/src/Resources/public/scss/color_schemes/odd_grey_colors.scss b/public/scss/color_schemes/odd_grey_colors.scss similarity index 100% rename from src/Resources/public/scss/color_schemes/odd_grey_colors.scss rename to public/scss/color_schemes/odd_grey_colors.scss diff --git a/src/Resources/public/scss/maklermodul.scss b/public/scss/maklermodul.scss similarity index 100% rename from src/Resources/public/scss/maklermodul.scss rename to public/scss/maklermodul.scss diff --git a/public/scss/odd.scss b/public/scss/odd.scss new file mode 100644 index 0000000..37ba85a --- /dev/null +++ b/public/scss/odd.scss @@ -0,0 +1,30 @@ +@charset "UTF-8"; + +@font-face { + font-family: 'Cabin'; + font-display: swap; + src: local('Cabin'), + url('/bundles/contaothemesnetoddtheme/fonts/Cabin/cabin-regular-webfont.woff2') format('woff2'), + url('/bundles/contaothemesnetoddtheme/fonts/Cabin/cabin-regular-webfont.woff') format('woff'), + url('/bundles/contaothemesnetoddtheme/fonts/Cabin/cabin-regular-webfont.ttf') format('ttf'), + url('/bundles/contaothemesnetoddtheme/fonts/Cabin/cabin-regular-webfont.eot') format('eot'); +} + +@font-face { + font-family: 'Muli'; + font-display: swap; + src: local('Muli'), + url('/bundles/contaothemesnetoddtheme/fonts/Muli/muli-regular-webfont.woff2') format('woff2'), + url('/bundles/contaothemesnetoddtheme/fonts/Muli/muli-regular-webfont.woff') format('woff'), + url('/bundles/contaothemesnetoddtheme/fonts/Muli/muli-regular-webfont.ttf') format('ttf'), + url('/bundles/contaothemesnetoddtheme/fonts/Muli/muli-regular-webfont.eot') format('eot'); +} + +@import "_odd_colors"; +@import "../../../../../files/odd/scss/_custom_colors"; +@import "_odd_variables"; +@import "../../../../../files/odd/scss/_custom_variables"; + +@import 'style'; + +@import '../../../../../files/odd/scss/custom'; diff --git a/public/scss/odd_win.scss b/public/scss/odd_win.scss new file mode 100644 index 0000000..990ffb6 --- /dev/null +++ b/public/scss/odd_win.scss @@ -0,0 +1,30 @@ +@charset "UTF-8"; + +@font-face { + font-family: 'Cabin'; + font-display: swap; + src: local('Cabin'), + url('../../../bundles/contaothemesnetoddtheme/fonts/Cabin/cabin-regular-webfont.woff2') format('woff2'), + url('../../../bundles/contaothemesnetoddtheme/fonts/Cabin/cabin-regular-webfont.woff') format('woff'), + url('../../../bundles/contaothemesnetoddtheme/fonts/Cabin/cabin-regular-webfont.ttf') format('ttf'), + url('../../../bundles/contaothemesnetoddtheme/fonts/Cabin/cabin-regular-webfont.eot') format('eot'); +} + +@font-face { + font-family: 'Muli'; + font-display: swap; + src: local('Muli'), + url('../../../bundles/contaothemesnetoddtheme/fonts/Muli/muli-regular-webfont.woff2') format('woff2'), + url('../../../bundles/contaothemesnetoddtheme/fonts/Muli/muli-regular-webfont.woff') format('woff'), + url('../../../bundles/contaothemesnetoddtheme/fonts/Muli/muli-regular-webfont.ttf') format('ttf'), + url('../../../bundles/contaothemesnetoddtheme/fonts/Muli/muli-regular-webfont.eot') format('eot'); +} + +@import "_odd_colors"; +@import "../../../../../files/odd/scss/_custom_colors"; +@import "_odd_variables"; +@import "../../../../../files/odd/scss/_custom_variables"; + +@import 'style'; + +@import '../../../../../files/odd/scss/custom'; diff --git a/src/Resources/public/scss/parts/elements.scss b/public/scss/parts/elements.scss similarity index 83% rename from src/Resources/public/scss/parts/elements.scss rename to public/scss/parts/elements.scss index 109185d..92c8adc 100644 --- a/src/Resources/public/scss/parts/elements.scss +++ b/public/scss/parts/elements.scss @@ -90,7 +90,7 @@ h6 { .mod_article.primary-bg { h1, h2, h3, h4, h5, h6 { - &.ce_headline { + &.content-headline{ color: $oddColor6; } } @@ -126,81 +126,66 @@ h6 { } } -.ce_gallery { +.content-gallery { overflow: hidden; - ul { - padding: 0; + &[class*="cols-2"] li { + max-width: calc(100% / 2); + } - li { - list-style-type: none; - float: left; - } + &[class*="cols-3"] li { + max-width: calc(100% / 3); + } - &.cols_2 { - li { - max-width: calc(100% / 2); - } - } + &[class*="cols-4"] li { + max-width: calc(100% / 4); + } - &.cols_3 { - li { - max-width: calc(100% / 3); - } - } + &[class*="cols-5"] li { + max-width: calc(100% / 5); + } - &.cols_4 { - li { - max-width: calc(100% / 4); - } - } + &[class*="cols-6"] li { + max-width: calc(100% / 6); + } - &.cols_5 { - li { - max-width: calc(100% / 5); - } - } + &[class*="cols-7"] li { + max-width: calc(100% / 7); + } - &.cols_6 { - li { - max-width: calc(100% / 6); - } - } + &[class*="cols-8"] li { + max-width: calc(100% / 8); + } - &.cols_7 { - li { - max-width: calc(100% / 7); - } - } + &[class*="cols-9"] li { + max-width: calc(100% / 9); + } - &.cols_8 { - li { - max-width: calc(100% / 8); - } - } + &[class*="cols-10"] li { + max-width: calc(100% / 10); + } - &.cols_9 { - li { - max-width: calc(100% / 9); - } - } + &[class*="cols-11"] li { + max-width: calc(100% / 11); + } - &.cols_10 { - li { - max-width: calc(100% / 10); - } - } + &[class*="cols-12"] li { + max-width: calc(100% / 12); + } - &.cols_11 { - li { - max-width: calc(100% / 11); - } - } + figure { + margin: 0; + } - &.cols_12 { - li { - max-width: calc(100% / 12); - } + ul { + padding: 0; + margin-left: -7.5px; + margin-right: -7.5px; + + li { + list-style-type: none; + float: left; + padding: 7.5px; } } } @@ -262,7 +247,7 @@ hr { } /* Textelemente */ -.ce_table, .ce_text { +.content-table, .content-text { table { width: 100%; } @@ -347,7 +332,7 @@ blockquote { } } -.ce_download { +.content-download { a { padding: 5px 10px; display: block; @@ -357,7 +342,7 @@ blockquote { } } -.ce_downloads { +.content-downloads { ul { padding: 0; @@ -381,4 +366,4 @@ blockquote { } } } -} \ No newline at end of file +} diff --git a/src/Resources/public/scss/parts/footer.scss b/public/scss/parts/footer.scss similarity index 100% rename from src/Resources/public/scss/parts/footer.scss rename to public/scss/parts/footer.scss diff --git a/src/Resources/public/scss/parts/forms.scss b/public/scss/parts/forms.scss similarity index 100% rename from src/Resources/public/scss/parts/forms.scss rename to public/scss/parts/forms.scss diff --git a/src/Resources/public/scss/parts/header.scss b/public/scss/parts/header.scss similarity index 98% rename from src/Resources/public/scss/parts/header.scss rename to public/scss/parts/header.scss index 14996db..740840d 100644 --- a/src/Resources/public/scss/parts/header.scss +++ b/public/scss/parts/header.scss @@ -14,6 +14,10 @@ padding-top: 155px; } +.cto-toolbar--visible + #wrapper .nav-container { + margin-top: 40px; +} + .navbar { height: 100px; background: $navbar-background !important; @@ -488,7 +492,7 @@ header, footer { + .mod_article { margin-top: -40px; - .headerImage h1 { + .header-image h1 { margin-top: 20px; } } diff --git a/src/Resources/public/scss/parts/layout.scss b/public/scss/parts/layout.scss similarity index 100% rename from src/Resources/public/scss/parts/layout.scss rename to public/scss/parts/layout.scss diff --git a/src/Resources/public/scss/parts/modules.scss b/public/scss/parts/modules.scss similarity index 100% rename from src/Resources/public/scss/parts/modules.scss rename to public/scss/parts/modules.scss diff --git a/src/Resources/public/scss/parts/news-events.scss b/public/scss/parts/news-events.scss similarity index 100% rename from src/Resources/public/scss/parts/news-events.scss rename to public/scss/parts/news-events.scss diff --git a/src/Resources/public/scss/parts/theme-elements.scss b/public/scss/parts/theme-elements.scss similarity index 99% rename from src/Resources/public/scss/parts/theme-elements.scss rename to public/scss/parts/theme-elements.scss index 9764bb3..af19a26 100644 --- a/src/Resources/public/scss/parts/theme-elements.scss +++ b/public/scss/parts/theme-elements.scss @@ -344,7 +344,7 @@ input, button { } // Kopfbild -.headerImage { +.header-image { position: relative; .caption { @@ -373,7 +373,7 @@ input, button { } .skw-bl, .skw-br, .skw-tl, .skw-tr { - .headerImage h1 { + .header-image h1 { margin-top: -50px; } } @@ -583,7 +583,7 @@ input, button { font-weight: 700; } - .ce_hyperlink { + .content-hyperlink { margin-top: 15px; &.btn a { @@ -706,4 +706,4 @@ input, button { width: 15px; } } -} \ No newline at end of file +} diff --git a/src/Resources/public/scss/responsive.scss b/public/scss/responsive.scss similarity index 96% rename from src/Resources/public/scss/responsive.scss rename to public/scss/responsive.scss index 256641b..1df81ff 100644 --- a/src/Resources/public/scss/responsive.scss +++ b/public/scss/responsive.scss @@ -332,8 +332,8 @@ } } - .ce_gallery ul { - &.cols_2, &.cols_3 { + .content-gallery { + &[class*="cols-2"], &[class*="cols-3"] { li { max-width: 100%; } @@ -343,7 +343,7 @@ } } - &.cols_4, &.cols_5, &.cols_6, &.cols_7, &.cols_8, &.cols_9, &.cols_10, &.cols_11, &.cols_12 { + &[class*="cols-4"], &[class*="cols-5"], &[class*="cols-6"], &[class*="cols-7"], &[class*="cols-8"], &[class*="cols-9"], &[class*="cols-10"], &[class*="cols-11"], &[class*="cols-12"] { li { max-width: 50%; } @@ -380,7 +380,7 @@ } } - .headerImage { + .header-image { .caption h1 { font-size: 1.2rem; max-width: 90%; @@ -466,11 +466,11 @@ display: inline-block; } - .nav-container.sloping + .mod_article .headerImage h1 { + .nav-container.sloping + .mod_article .header-image h1 { margin-top: 0; } - .nav-container.sloping + .mod_article:not([class*="skw"]) .headerImage h1 { + .nav-container.sloping + .mod_article:not([class*="skw"]) .header-image h1 { margin-top: 40px; } } @@ -568,4 +568,4 @@ text-align: center; } } -} \ No newline at end of file +} diff --git a/src/Resources/public/scss/style.scss b/public/scss/style.scss similarity index 93% rename from src/Resources/public/scss/style.scss rename to public/scss/style.scss index cabc89a..96545ca 100644 --- a/src/Resources/public/scss/style.scss +++ b/public/scss/style.scss @@ -45,12 +45,12 @@ a { box-shadow: none; } -.ce_hyperlink.btn:not(:disabled):not(.disabled) { +.content-hyperlink.btn:not(:disabled):not(.disabled) { text-align: left; padding: 0; } -.ce_hyperlink.btn { +.content-hyperlink.btn { display: block; } @@ -100,4 +100,4 @@ img { /* Responsive */ /* ======================== */ -@import 'responsive'; \ No newline at end of file +@import 'responsive'; diff --git a/src/ContaoManager/Plugin.php b/src/ContaoManager/Plugin.php new file mode 100644 index 0000000..76e95bd --- /dev/null +++ b/src/ContaoManager/Plugin.php @@ -0,0 +1,43 @@ + + * + * @package theme odd bundle + * @link https://github.com/contao-themes-net/odd-theme-bundle + * @license pdir contao theme licence + * @author pdir GmbH + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace ContaoThemesNet\OddThemeBundle\ContaoManager; + +use Contao\CoreBundle\ContaoCoreBundle; +use Contao\ManagerPlugin\Bundle\BundlePluginInterface; +use Contao\ManagerPlugin\Bundle\Config\BundleConfig; +use Contao\ManagerPlugin\Bundle\Parser\ParserInterface; +use ContaoThemesNet\OddThemeBundle\ContaoThemesNetOddThemeBundle; +use ContaoThemesNet\ThemeComponentsBundle\ThemeComponentsBundle; + +class Plugin implements BundlePluginInterface +{ + /** + * {@inheritdoc} + */ + public function getBundles(ParserInterface $parser) + { + return [ + BundleConfig::create(ContaoThemesNetOddThemeBundle::class) + ->setLoadAfter([ + ContaoCoreBundle::class, + ThemeComponentsBundle::class, + ]), + ]; + } +} diff --git a/src/ContaoManagerPlugin.php b/src/ContaoManagerPlugin.php deleted file mode 100644 index bdc8894..0000000 --- a/src/ContaoManagerPlugin.php +++ /dev/null @@ -1,42 +0,0 @@ - - * - * @package theme odd bundle - * @link https://pdir.de - * @license pdir license - All-rights-reserved - commercial extension - * @author pdir GmbH - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace ContaoThemesNet\ThemeOddBundle; - -use Contao\CoreBundle\ContaoCoreBundle; -use Contao\ManagerPlugin\Bundle\BundlePluginInterface; -use Contao\ManagerPlugin\Bundle\Config\BundleConfig; -use Contao\ManagerPlugin\Bundle\Parser\ParserInterface; - -class ContaoManagerPlugin implements BundlePluginInterface -{ - /** - * {@inheritdoc} - */ - public function getBundles(ParserInterface $parser) - { - return [ - BundleConfig::create(PdirThemeOddBundle::class) - ->setLoadAfter([ - ContaoCoreBundle::class - ]), - ]; - } - - /*public function getPackageDependencies() - { - return ['friends-of-contao/contao-memberlist']; - }*/ -} \ No newline at end of file diff --git a/src/PdirThemeOddBundle.php b/src/ContaoThemesNetOddThemeBundle.php similarity index 51% rename from src/PdirThemeOddBundle.php rename to src/ContaoThemesNetOddThemeBundle.php index 5ea123d..39f7a11 100644 --- a/src/PdirThemeOddBundle.php +++ b/src/ContaoThemesNetOddThemeBundle.php @@ -1,19 +1,23 @@ + * Copyright (C) 2022 pdir / digital agentur * * @package theme odd bundle - * @link https://pdir.de - * @license pdir license - All-rights-reserved - commercial extension + * @link https://github.com/contao-themes-net/odd-theme-bundle + * @license pdir contao theme licence * @author pdir GmbH * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ -namespace ContaoThemesNet\ThemeOddBundle; +namespace ContaoThemesNet\OddThemeBundle; + use Symfony\Component\HttpKernel\Bundle\Bundle; /** @@ -21,6 +25,10 @@ * * @author Philipp Seibt */ -class PdirThemeOddBundle extends Bundle +class ContaoThemesNetOddThemeBundle extends Bundle { -} \ No newline at end of file + public function getPath(): string + { + return \dirname(__DIR__); + } +} diff --git a/src/DependencyInjection/ContaoThemesNetOddThemeExtension.php b/src/DependencyInjection/ContaoThemesNetOddThemeExtension.php new file mode 100644 index 0000000..4ffb77b --- /dev/null +++ b/src/DependencyInjection/ContaoThemesNetOddThemeExtension.php @@ -0,0 +1,40 @@ + + * + * @package theme odd bundle + * @link https://github.com/contao-themes-net/odd-theme-bundle + * @license pdir contao theme licence + * @author pdir GmbH + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace ContaoThemesNet\OddThemeBundle\DependencyInjection; + +use Symfony\Component\Config\FileLocator; +use Symfony\Component\DependencyInjection\ContainerBuilder; +use Symfony\Component\DependencyInjection\Extension\Extension; +use Symfony\Component\DependencyInjection\Loader\YamlFileLoader; + +class ContaoThemesNetOddThemeExtension extends Extension +{ + /** + * {@inheritdoc} + */ + public function load(array $mergedConfig, ContainerBuilder $container): void + { + $loader = new YamlFileLoader( + $container, + new FileLocator(__DIR__.'/../../config') + ); + + $loader->load('services.yml'); + } +} diff --git a/src/Element/SliderElement.php b/src/Element/SliderElement.php index 5bf785f..97294f6 100644 --- a/src/Element/SliderElement.php +++ b/src/Element/SliderElement.php @@ -1,35 +1,53 @@ + * + * @package theme odd bundle + * @link https://github.com/contao-themes-net/odd-theme-bundle + * @license pdir contao theme licence + * @author pdir GmbH + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace ContaoThemesNet\OddThemeBundle\Element; use Contao\BackendTemplate; +use Contao\ContentElement; use Contao\FilesModel; use Contao\StringUtil; +use Contao\System; -class SliderElement extends \ContentElement +class SliderElement extends ContentElement { /** - * Template + * Template. + * * @var string */ protected $strTemplate = 'ce_slider_element'; /** - * Display a wildcard in the back end + * Display a wildcard in the back end. * * @return string */ public function generate() { - if (TL_MODE == 'BE') - { + if (System::getContainer()->get('contao.routing.scope_matcher')->isBackendRequest(System::getContainer()->get('request_stack')->getCurrentRequest() ?? Request::create(''))) { /** @var BackendTemplate|object $objTemplate */ $objTemplate = new BackendTemplate('be_wildcard'); $objTemplate->title = $this->headline; $objTemplate->id = $this->id; $objTemplate->link = $this->name; - $objTemplate->text = StringUtil::toHtml5($this->text); + $objTemplate->text = StringUtil::encodeEmail($this->text); return $objTemplate->parse(); } @@ -38,9 +56,9 @@ public function generate() } /** - * Generate the content element + * Generate the content element. */ - protected function compile() + protected function compile(): void { $this->Template->page = $this->odd_page; $this->Template->linkText = $this->odd_linkText; @@ -62,8 +80,7 @@ protected function compile() } // overwrite link target - if ($this->target) - { + if ($this->target) { $this->Template->target = ' target="_blank"'; $this->Template->rel = ' rel="noreferrer noopener"'; } diff --git a/src/Migration/InitialDemoDataMigration.php b/src/Migration/InitialDemoDataMigration.php new file mode 100644 index 0000000..4e49e1f --- /dev/null +++ b/src/Migration/InitialDemoDataMigration.php @@ -0,0 +1,105 @@ + + * + * @package theme odd bundle + * @link https://github.com/contao-themes-net/odd-theme-bundle + * @license pdir contao theme licence + * @author pdir GmbH + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace ContaoThemesNet\OddThemeBundle\Migration; + +use Contao\CoreBundle\Framework\ContaoFramework; +use Contao\CoreBundle\Migration\AbstractMigration; +use Contao\CoreBundle\Migration\MigrationResult; +use Contao\System; +use Doctrine\DBAL\Connection; +use Doctrine\DBAL\Exception; + +class InitialDemoDataMigration extends AbstractMigration +{ + use MigrationHelperTrait; + + public function __construct(ContaoFramework $contaoFramework, Connection $connection) + { + $this->contaoFramework = $contaoFramework; + $this->connection = $connection; + } + + public function getName(): string + { + return 'Initial demo data migration - ODD Theme'; + } + + /** + * @throws Exception|\Doctrine\DBAL\Driver\Exception + */ + public function shouldRun(): bool + { + $schemaManager = $this->connection->createSchemaManager(); + + // If the database tables itself does not exist we should do nothing + if (!$schemaManager->tablesExist($this->minTables)) { + return false; + } + + // Check if full version is used + if ($schemaManager->tablesExist($this->fullTables)) { + $this->sqlFile = str_replace('minimal', 'full', $this->sqlFile); + } + + // check some tables for content + $count = $this->connection->fetchOne('SELECT COUNT(*) FROM `tl_article`'); + $count += $this->connection->fetchOne('SELECT COUNT(*) FROM `tl_content`'); + $count += $this->connection->fetchOne('SELECT COUNT(*) FROM `tl_module`'); + + if ($count > 0) { + return false; + } + + if (!isset($schemaManager->listTableColumns('tl_article')['pdir_th_tag'])) { + return false; + } + + if (!$schemaManager->tablesExist(['tl_content']) && !isset($schemaManager->listTableColumns('tl_content')['advancedCss'])) { + return false; + } + + if (!$schemaManager->tablesExist(['tl_form']) && !isset($schemaManager->listTableColumns('tl_form')['ac_set'])) { + return false; + } + + return true; + } + + /** + * @throws Exception|\Doctrine\DBAL\Driver\Exception + */ + public function run(): MigrationResult + { + $this->contaoFramework->initialize(); + + $this->uploadPath = System::getContainer()->getParameter('contao.upload_path'); + $this->projectDir = System::getContainer()->getParameter('kernel.project_dir'); + + foreach (explode("\n", file_get_contents($this->projectDir.'/'.$this->contaoFolder.'/'.$this->sqlFile)) as $sql) { + // ignore empty lines + if ('' === trim($sql)) { + continue; + } + + $this->connection->prepare($sql)->execute(); + } + + return $this->createResult(true, 'Initial structure and content added.'); + } +} diff --git a/src/Migration/InitialFilesFolderMigration.php b/src/Migration/InitialFilesFolderMigration.php new file mode 100644 index 0000000..39d1634 --- /dev/null +++ b/src/Migration/InitialFilesFolderMigration.php @@ -0,0 +1,80 @@ + + * + * @package theme odd bundle + * @link https://github.com/contao-themes-net/odd-theme-bundle + * @license pdir contao theme licence + * @author pdir GmbH + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace ContaoThemesNet\OddThemeBundle\Migration; + +use Contao\CoreBundle\Framework\ContaoFramework; +use Contao\CoreBundle\Migration\AbstractMigration; +use Contao\CoreBundle\Migration\MigrationResult; +use Contao\Folder; +use Contao\System; +use Doctrine\DBAL\Connection; +use Doctrine\DBAL\Exception; + +class InitialFilesFolderMigration extends AbstractMigration +{ + use MigrationHelperTrait; + + public function __construct(ContaoFramework $contaoFramework, Connection $connection) + { + $this->contaoFramework = $contaoFramework; + $this->connection = $connection; + } + + public function getName(): string + { + return 'Initial files folder migration - ODD Theme'; + } + + /** + * @throws Exception|\Doctrine\DBAL\Driver\Exception + */ + public function shouldRun(): bool + { + $schemaManager = $this->connection->createSchemaManager(); + + // If the database tables itself does not exist we should do nothing + if (!$schemaManager->tablesExist($this->minTables)) { + return false; + } + + $this->contaoFramework->initialize(); + + $this->uploadPath = System::getContainer()->getParameter('contao.upload_path'); + $this->projectDir = System::getContainer()->getParameter('kernel.project_dir'); + + // If the folder exists we should do nothing + if (file_exists($this->projectDir.'/'.$this->uploadPath.'/'.$this->themeFolder)) { + return false; + } + + return true; + } + + /** + * @throws Exception|\Doctrine\DBAL\Driver\Exception + */ + public function run(): MigrationResult + { + // copy files and folders to files + $folder = new Folder($this->contaoFolder.'/files/'.$this->themeFolder); + $folder->copyTo($this->uploadPath.'/'.$this->themeFolder); + + return $this->createResult(true, 'Initial theme files where copied.'); + } +} diff --git a/src/Migration/MigrationHelperTrait.php b/src/Migration/MigrationHelperTrait.php new file mode 100644 index 0000000..8cf0e4e --- /dev/null +++ b/src/Migration/MigrationHelperTrait.php @@ -0,0 +1,44 @@ + + * + * @package theme odd bundle + * @link https://github.com/contao-themes-net/odd-theme-bundle + * @license pdir contao theme licence + * @author pdir GmbH + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace ContaoThemesNet\OddThemeBundle\Migration; + +use Contao\CoreBundle\Framework\ContaoFramework; +use Doctrine\DBAL\Connection; + +trait MigrationHelperTrait +{ + private ContaoFramework $contaoFramework; + private Connection $connection; + + private string $uploadPath; + private string $projectDir; + + private string $contaoFolder = 'vendor/contao-themes-net/odd-theme-bundle/contao'; + private string $themeFolder = 'odd'; + private string $sqlFile = 'sql/contao50/minimal.sql'; + + private array $minTables = [ + 'tl_article', 'tl_content', 'tl_files', 'tl_form', 'tl_form_field', 'tl_image_size', + 'tl_image_size_item', 'tl_layout', 'tl_member', 'tl_module', 'tl_page', 'tl_theme', + ]; + + private array $fullTables = [ + 'tl_calendar', 'tl_calendar_events', 'tl_faq', 'tl_faq_category', 'tl_news', 'tl_newsletter_channel', 'tl_news_archive', + ]; +} diff --git a/src/Migration/Version300.php b/src/Migration/Version300.php new file mode 100644 index 0000000..2a28d78 --- /dev/null +++ b/src/Migration/Version300.php @@ -0,0 +1,71 @@ + + * + * @package theme odd bundle + * @link https://github.com/contao-themes-net/odd-theme-bundle + * @license pdir contao theme licence + * @author pdir GmbH + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace ContaoThemesNet\OddThemeBundle\Migration; + +use Contao\CoreBundle\Migration\AbstractMigration; +use Contao\CoreBundle\Migration\MigrationResult; +use Doctrine\DBAL\Connection; +use Doctrine\DBAL\Exception; + +class Version300 extends AbstractMigration +{ + private Connection $connection; + + public function __construct(Connection $connection) + { + $this->connection = $connection; + } + + public function getName(): string + { + return 'Version 300 - ODD Theme'; + } + + /** + * @throws Exception|\Doctrine\DBAL\Driver\Exception + */ + public function shouldRun(): bool + { + $schemaManager = $this->connection->createSchemaManager(); + + if (!$schemaManager->tablesExist(['tl_content'])) { + return false; + } + + if (!isset($schemaManager->listTableColumns('tl_content')['customtpl']) && !isset($schemaManager->listTableColumns('tl_content')['galleryTpl'])) { + return false; + } + + $test = $this->connection->fetchOne("SELECT id FROM tl_content WHERE customTpl = 'ce_image_headerimage_odd' OR galleryTpl = 'gallery_default_references' LIMIT 1"); + + return false !== $test; + } + + /** + * @throws Exception|\Doctrine\DBAL\Driver\Exception + */ + public function run(): MigrationResult + { + $this->connection->executeStatement("UPDATE tl_content SET customTpl = 'content_element/image/header_image_odd' WHERE customTpl = 'ce_image_headerimage_odd'"); + + $this->connection->executeStatement("UPDATE tl_content SET customTpl = 'content_element/gallery/gallery_references', galleryTpl = '' WHERE galleryTpl = 'gallery_default_references'"); + + return $this->createResult(true); + } +} diff --git a/src/Module/OddThemeSetup.php b/src/Module/OddThemeSetup.php index 83b3044..cff405a 100644 --- a/src/Module/OddThemeSetup.php +++ b/src/Module/OddThemeSetup.php @@ -1,81 +1,36 @@ + * + * @package theme odd bundle + * @link https://github.com/contao-themes-net/odd-theme-bundle + * @license pdir contao theme licence + * @author pdir GmbH + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace ContaoThemesNet\OddThemeBundle\Module; + +use Contao\BackendModule; + +class OddThemeSetup extends BackendModule { - const VERSION = '2.0.4'; + public const VERSION = '3.0.0'; protected $strTemplate = 'be_oddtheme_setup'; /** - * Generate the module + * Generate the module. */ - protected function compile() + protected function compile(): void { - switch (\Input::get('act')) { - case 'syncFolder': - $path = sprintf('%s/%s/bundles/pdirthemeodd', - ThemeUtils::getRootDir(), - ThemeUtils::getWebDir()); - if(!file_exists("files/odd")) { - new \Folder("files/odd"); - } - $this->getFiles($path); - $this->getSqlFiles(ThemeUtils::getRootDir() . "/vendor/contao-themes-net/odd-theme-bundle/src/templates"); - $this->Template->message = true; - $this->Template->version = OddThemeSetup::VERSION; - $this->import('Automator'); - $this->Automator->purgeInternalCache(); - $this->Automator->generateInternalCache(); - break; - case 'truncateTlFiles': - $this->import('Database'); - $this->Database->prepare("TRUNCATE tl_files")->execute(); - $this->Template->messageTruncate = true; - $this->Template->version = OddThemeSetup::VERSION; - break; - default: - $this->Template->version = OddThemeSetup::VERSION; - } - } - - protected function getFiles($path) { - foreach (scan($path) as $dir) { - if(!is_dir($path."/".$dir)) { - $pos = strpos($path,"pdirthemeodd"); - $filesFolder = "files/odd".str_replace("pdirthemeodd","",substr($path,$pos))."/".$dir; - - if($dir != "_odd_variables.scss" && $dir != "_odd_colors.scss" && $dir != "backend.css" && $dir != "odd.scss" && $dir != "responsive.scss" && $dir != "maklermodul.scss" && $dir != "odd_win.scss" && $dir != "style.scss") { - if(!file_exists(ThemeUtils::getRootDir()."/".$filesFolder)) { - $objFile = new \File(ThemeUtils::getWebDir()."/bundles/".substr($path,$pos)."/".$dir, true); - $objFile->copyTo($filesFolder); - } - } - } else { - $folder = $path."/".$dir; - $pos = strpos($path,"pdirthemeodd"); - $filesFolder = "files/odd".str_replace("pdirthemeodd","",substr($path,$pos))."/".$dir; - if($dir != "fonts" && $dir != "js" && $dir != "bootstrap" && $dir != "fontawesome" && $dir != "color_schemes" && $dir != "parts") { - if(!file_exists($filesFolder)) { - new \Folder($filesFolder); - } - $this->getFiles($folder); - } - } - } - } - - protected function getSqlFiles($path) { - foreach (scan($path) as $dir) { - if(!is_dir($path."/".$dir)) { - $pos = strpos($path,"/vendor"); - $filesFolder = "templates/" . $dir; - $objFile = new \File(substr($path,$pos)."/".$dir, true); - $objFile->copyTo($filesFolder); - } - } + $this->Template->version = self::VERSION; } } diff --git a/src/Resources/contao/dca/tl_content.php b/src/Resources/contao/dca/tl_content.php deleted file mode 100644 index 6f8fff3..0000000 --- a/src/Resources/contao/dca/tl_content.php +++ /dev/null @@ -1,49 +0,0 @@ - &$GLOBALS['TL_LANG']['tl_content']['odd_page'], - 'exclude' => true, - 'search' => true, - 'inputType' => 'text', - 'eval' => array('mandatory'=>false, 'rgxp'=>'url', 'decodeEntities'=>true, 'maxlength'=>255, 'dcaPicker'=>true, 'addWizardClass'=>false, 'tl_class'=>'w50'), - 'sql' => "TEXT NULL" -); - -$GLOBALS['TL_DCA']['tl_content']['fields']['odd_linkText'] = array -( - 'label' => &$GLOBALS['TL_LANG']['tl_content']['odd_linkText'], - 'exclude' => true, - 'inputType' => 'text', - 'eval' => array('tl_class'=>'w50'), - 'sql' => "TEXT NULL" -); - -$GLOBALS['TL_DCA']['tl_content']['fields']['target'] = array -( - 'label' => &$GLOBALS['TL_LANG']['tl_content']['target'], - 'exclude' => true, - 'inputType' => 'checkbox', - 'eval' => array('tl_class'=>'w50 m12'), - 'sql' => "char(1) NOT NULL default ''" -); - -$GLOBALS['TL_DCA']['tl_content']['fields']['odd_subHeadline'] = array -( - 'label' => &$GLOBALS['TL_LANG']['tl_content']['odd_subHeadline'], - 'exclude' => true, - 'inputType' => 'text', - 'eval' => array('tl_class'=>'w50'), - 'sql' => "TEXT NULL" -); \ No newline at end of file diff --git a/src/Resources/contao/templates/be/be_oddtheme_setup.html5 b/src/Resources/contao/templates/be/be_oddtheme_setup.html5 deleted file mode 100644 index 298d84e..0000000 --- a/src/Resources/contao/templates/be/be_oddtheme_setup.html5 +++ /dev/null @@ -1,49 +0,0 @@ -
-
-

ODD Theme für Contao (Version version ?>)

-
-
-
- -

Das ODD Theme für Contao ist ein Produkt der pdir / digital agentur

-

Interessante Links

- -
-
-
-
-

Willkommen bei ODD Theme für Contao

-

pdir contao theme licence
Mit dieser Lizenz gekennzeichnete Themes dürfen sowohl privat als auch kommerziell eingesetzt werden. Der Copyright-Link bzw. die Copyright-Links "powered by contao-themes.net" dürfen nicht entfernt oder verändert werden. Das gilt auch wenn Sie das Theme nur als Basis für eine Website einsetzen und es verändern. Möchten Sie diesen Theme ohne Copyright-Link einsetzen, müssen Sie eine kostenpflichtige Lizenz erwerben.

-
-
-
-
-
-
-

Tools

-
-

Die folgenden Schritte sind nur bei der ersten Installation notwendig und nicht bei einem Update des ODD Themes. Wenn Sie das Theme aktualisieren wollen, können Sie das ganz einfach über den Contao Manager durchführen. Anschließend rufen Sie das Install-Tool auf und aktualisieren die Datenbank.

Ein Backup der Datenbank kann nie schaden!

-

Bevor Sie die Datenbank importieren, müssen Sie die Theme-Dateien synchronisieren.

- -

Anschließend müssen Sie die Datenbank-Tabelle 'tl_files' leeren, bevor Sie die Datenbank importieren. Die Schritte zum Importieren der Datenbank entnehmen Sie bitte der Dokumentation.

- -
-
- message == true): ?> -

Alle Verzeichnisse und Dateien, die noch nicht existierten, wurden erfolgreich angelegt.

- - messageTruncate == true): ?> -

Die Tabelle "tl_files" wurde erfolgreich geleert.

- -
-
-
\ No newline at end of file diff --git a/src/Resources/contao/templates/elements/ce_image_headerimage_odd.html5 b/src/Resources/contao/templates/elements/ce_image_headerimage_odd.html5 deleted file mode 100644 index 5847b2d..0000000 --- a/src/Resources/contao/templates/elements/ce_image_headerimage_odd.html5 +++ /dev/null @@ -1,17 +0,0 @@ -
cssId ?>> - - size)[2]; - if($size == "") { - $size = '3'; - } - ?> - - {{picture::picture['img']['src'] ?>?size=&alt=picture['alt'] ?> }} - -
- headline): ?> - <hl ?>>headline ?>hl ?>> - -
-
\ No newline at end of file diff --git a/src/Resources/contao/templates/elements/gallery_default_references.html5 b/src/Resources/contao/templates/elements/gallery_default_references.html5 deleted file mode 100644 index a3096f8..0000000 --- a/src/Resources/contao/templates/elements/gallery_default_references.html5 +++ /dev/null @@ -1,12 +0,0 @@ - -
    - body as $class => $row): ?> - - addImage): ?> -
  • - insert('image_reference', (array) $col); ?> -
  • - - - -
diff --git a/src/Resources/contao/templates/elements/image_reference.html5 b/src/Resources/contao/templates/elements/image_reference.html5 deleted file mode 100644 index b563320..0000000 --- a/src/Resources/contao/templates/elements/image_reference.html5 +++ /dev/null @@ -1,26 +0,0 @@ - -
margin): ?> style="margin ?>"> - imageHref || $this->href): ?> - linkTitle): ?> title="linkTitle ?>"attributes ?>> - - - insert('picture_default', $this->picture); ?> - - imageHref || $this->href): ?> - - caption): ?> - - - -
- -figure) { -$this->addSchemaOrg($this->figure->getSchemaOrgData()); -} diff --git a/src/Resources/contao/templates/modules/nav_default_odd.html5 b/src/Resources/contao/templates/modules/nav_default_odd.html5 deleted file mode 100644 index aa382b1..0000000 --- a/src/Resources/contao/templates/modules/nav_default_odd.html5 +++ /dev/null @@ -1,19 +0,0 @@ - - diff --git a/src/Resources/public/scss/odd.scss b/src/Resources/public/scss/odd.scss deleted file mode 100644 index 8ac4e9c..0000000 --- a/src/Resources/public/scss/odd.scss +++ /dev/null @@ -1,30 +0,0 @@ -@charset "UTF-8"; - -@font-face { - font-family: 'Cabin'; - font-display: swap; - src: local('Cabin'), - url('/bundles/pdirthemeodd/fonts/Cabin/cabin-regular-webfont.woff2') format('woff2'), - url('/bundles/pdirthemeodd/fonts/Cabin/cabin-regular-webfont.woff') format('woff'), - url('/bundles/pdirthemeodd/fonts/Cabin/cabin-regular-webfont.ttf') format('ttf'), - url('/bundles/pdirthemeodd/fonts/Cabin/cabin-regular-webfont.eot') format('eot'); -} - -@font-face { - font-family: 'Muli'; - font-display: swap; - src: local('Muli'), - url('/bundles/pdirthemeodd/fonts/Muli/muli-regular-webfont.woff2') format('woff2'), - url('/bundles/pdirthemeodd/fonts/Muli/muli-regular-webfont.woff') format('woff'), - url('/bundles/pdirthemeodd/fonts/Muli/muli-regular-webfont.ttf') format('ttf'), - url('/bundles/pdirthemeodd/fonts/Muli/muli-regular-webfont.eot') format('eot'); -} - -@import "_odd_colors"; -@import "../../../../../../../files/odd/scss/_custom_colors"; -@import "_odd_variables"; -@import "../../../../../../../files/odd/scss/_custom_variables"; - -@import 'style'; - -@import '../../../../../../../files/odd/scss/custom'; \ No newline at end of file diff --git a/src/Resources/public/scss/odd_win.scss b/src/Resources/public/scss/odd_win.scss deleted file mode 100644 index a33e6f6..0000000 --- a/src/Resources/public/scss/odd_win.scss +++ /dev/null @@ -1,30 +0,0 @@ -@charset "UTF-8"; - -@font-face { - font-family: 'Cabin'; - font-display: swap; - src: local('Cabin'), - url('../../../bundles/pdirthemeodd/fonts/Cabin/cabin-regular-webfont.woff2') format('woff2'), - url('../../../bundles/pdirthemeodd/fonts/Cabin/cabin-regular-webfont.woff') format('woff'), - url('../../../bundles/pdirthemeodd/fonts/Cabin/cabin-regular-webfont.ttf') format('ttf'), - url('../../../bundles/pdirthemeodd/fonts/Cabin/cabin-regular-webfont.eot') format('eot'); -} - -@font-face { - font-family: 'Muli'; - font-display: swap; - src: local('Muli'), - url('../../../bundles/pdirthemeodd/fonts/Muli/muli-regular-webfont.woff2') format('woff2'), - url('../../../bundles/pdirthemeodd/fonts/Muli/muli-regular-webfont.woff') format('woff'), - url('../../../bundles/pdirthemeodd/fonts/Muli/muli-regular-webfont.ttf') format('ttf'), - url('../../../bundles/pdirthemeodd/fonts/Muli/muli-regular-webfont.eot') format('eot'); -} - -@import "_odd_colors"; -@import "../../../files/odd/scss/_custom_colors"; -@import "_odd_variables"; -@import "../../../files/odd/scss/_custom_variables"; - -@import 'style'; - -@import '../../../files/odd/scss/custom'; \ No newline at end of file diff --git a/src/ThemeUtils.php b/src/ThemeUtils.php index 3a9bfa4..6575eac 100644 --- a/src/ThemeUtils.php +++ b/src/ThemeUtils.php @@ -1,32 +1,59 @@ + * + * @package theme odd bundle + * @link https://github.com/contao-themes-net/odd-theme-bundle + * @license pdir contao theme licence + * @author pdir GmbH + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace ContaoThemesNet\OddThemeBundle; use Contao\Combiner; -use Contao\File; -use Contao\System; use Contao\StringUtil; +use Contao\System; class ThemeUtils { - public static function getRootDir() { + static string $themeFolder = 'bundles/contaothemesnetoddtheme/'; + static string $scssFolder = 'scss/'; + + public static function getRootDir(): string + { return System::getContainer()->getParameter('kernel.project_dir'); } - public static function getWebDir() { + public static function getWebDir(): string + { return StringUtil::stripRootDir(System::getContainer()->getParameter('contao.web_dir')); } - public static function getCombinedStylesheet() { + public static function getCombinedStylesheet($theme = null): string + { + self::$scssFolder = self::$themeFolder . self::$scssFolder; + + // for multi domain setup + if (null !== $theme) { + self::$scssFolder .= 'files/odd/scss/'.$theme.'/'; + } // add stylesheets $combiner = new Combiner(); - $combiner->add('bundles/pdirthemeodd/bootstrap/dist/css/bootstrap.min.css'); + $combiner->add(self::$themeFolder.'bootstrap/dist/css/bootstrap.min.css'); - if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') { - $combiner->add('bundles/pdirthemeodd/scss/odd_win.scss'); + if ('WIN' === strtoupper(substr(PHP_OS, 0, 3))) { + $combiner->add(self::$scssFolder.'odd_win.scss'); } else { - $combiner->add('bundles/pdirthemeodd/scss/odd.scss'); + $combiner->add(self::$scssFolder.'odd.scss'); } return $combiner->getCombinedFile(); diff --git a/src/templates/odd_theme_contao_demo_4.13.x_installtool.sql b/src/templates/odd_theme_contao_demo_4.13.x_installtool.sql deleted file mode 100644 index 294a0ff..0000000 --- a/src/templates/odd_theme_contao_demo_4.13.x_installtool.sql +++ /dev/null @@ -1,699 +0,0 @@ -SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; -SET AUTOCOMMIT = 0; -START TRANSACTION; -SET time_zone = "+00:00"; - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8mb4 */; - - -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(117, 91, 384, 1560848068, 'Slider', 'slider', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:23:\"slider fullwidth skw-br\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(118, 120, 64, 1554459150, 'Header', 'article-header', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-bl\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(119, 92, 128, 1511440816, 'Module', 'module', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(120, 93, 128, 1511440816, 'News', 'news-120', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(131, 101, 64, 1511440816, 'Slider', 'slider-19', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(132, 101, 128, 1511440816, 'Style Guide', 'style-guide', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(136, 107, 64, 1538489284, '02/01 Adressdaten', '02-01-adressdaten', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', 'ODD02/01'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(137, 107, 96, 1538489300, '02/02 Kontaktdaten', '02-02-kontaktdaten', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', 'ODD02/02'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(138, 107, 112, 1538489313, '02/03 Social Media Icons', '02-03-social-media-icons', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', 'ODD02/03'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(139, 107, 120, 1538489329, '02/04 Footer-Navigation', '02-04-footer-navigation', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', 'ODD02/04'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(140, 107, 124, 1538489341, '02/05 Copyright-Hinweis', '02-05-copyright-hinweis', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', 'ODD02/05'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(145, 106, 512, 1538489196, '01/01 Logo', '01-01-logo', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', 'ODD01/01'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(146, 108, 128, 1511448322, 'News Detailansicht', 'news-details', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(147, 109, 128, 1511440816, 'Events', 'module-events', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(148, 110, 128, 1511440816, 'Event Detailansicht', 'event-details', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(153, 113, 128, 1511440816, 'Textelemente', 'inhaltselemente-textelemente', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(154, 114, 128, 1511440816, 'Akkordion', 'inhaltselemente-akkordion', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(156, 116, 128, 1511440816, 'Media-Elemente', 'inhaltselemente-media-elemente', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(159, 120, 128, 1511440816, 'Layout mit linker Spalte', 'layouts-layout-mit-linker-spalte', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(160, 121, 128, 1511440816, 'Layout mit rechter Spalte', 'layouts-layout-mit-rechter-spalte', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(161, 122, 128, 1511441564, 'Layout mit linker und rechter Spalte', 'layouts-layout-mit-linker-und-rechter-spalte', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(165, 124, 128, 1511442061, 'Einspaltiges Layout', 'layouts-einspaltiges-layout', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(169, 127, 128, 1553878908, 'Weitere ODD Elemente', 'odd-elemente', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(170, 121, 64, 1555059636, 'Header', 'article-header-170', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-bl\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(171, 128, 128, 1511528829, 'Download-Elemente', 'style-guide-download-elemente', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(172, 129, 128, 1511529951, 'Navigation', 'module-navigation', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(173, 130, 128, 1511529962, 'User', 'module-user', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(174, 131, 128, 1511530034, 'Newsletter', 'module-newsletter', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(175, 132, 128, 1511530041, 'FAQ', 'module-faq', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(176, 133, 128, 1511530050, 'Anwendungen', 'module-anwendungen', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(177, 134, 128, 1511532246, 'Impressum', 'impressum', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(178, 135, 128, 1511778176, 'Formular-Bestätigung', 'module-anwendungen-formular-bestaetigung', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(179, 136, 128, 1511949585, 'Newsletter-Details', 'module-newsletter-newsletter-details', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(180, 137, 128, 1511951028, 'FAQ-Details', 'module-faq-faq-details', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(181, 138, 128, 1511953599, 'Suche', 'module-suche', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(182, 106, 640, 1538489223, '01/02 Top Navbar', '01-02-top-navbar', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', 'ODD01/02'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(184, 139, 128, 1555067798, 'Kontaktformular', 'kontakt', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(185, 140, 128, 1516628462, '404 Seite nicht gefunden', '404-seite-nicht-gefunden', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(186, 141, 128, 1516628325, '403 Zugriff verweigert', '403-zugriff-verweigert', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(189, 144, 128, 1517331403, 'Newsletter-Bestätigung', 'newsletter-bestätigung', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(190, 145, 128, 1517391098, 'Newsletter abbestellen', 'newsletter-abbestellen', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(193, 122, 32, 1539349600, 'Header', 'article-header-193', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-bl\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(194, 124, 64, 1539349619, 'Header', 'article-header-194', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-bl\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(197, 91, 512, 1552643358, 'Intro', 'intro', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(198, 91, 640, 1637664098, 'News', 'news', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:24:\"primary-bg skw-tr skw-br\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(199, 91, 768, 1540212382, 'Teaserbox', 'teaserbox', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(201, 108, 64, 1539184777, 'Kopfbild', 'kopfbild', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(202, 110, 64, 1539331237, 'Kopfbild', 'kopfbild-202', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(203, 148, 128, 1539339830, 'Newsletter abonniert', 'module-newsletter-newsletter-abonniert', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(209, 91, 896, 1540221815, 'Contentbox', 'contentbox', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(210, 91, 1024, 1552645291, 'Abschlusstext', 'abschlusstext', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(214, 91, 960, 1553870655, 'Preistabelle', 'preistabelle', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(215, 91, 832, 1553873058, 'Trenner', 'trenner', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(216, 91, 928, 1553873086, 'Trenner', 'trenner-216', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(220, 150, 64, 1554459178, 'Header', 'article-header-220', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(228, 157, 256, 1555328537, 'Header', 'article-header-228', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-bl\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(229, 157, 384, 1555060468, 'Schräge nach links', 'schräge-nach-links', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(230, 158, 256, 1555060311, 'Header', 'article-header-230', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-br\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(231, 158, 384, 1555060458, 'Schräge nach rechts', 'schräge-nach-rechts', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(232, 150, 192, 1555060446, 'ohne Schräge', 'ohne-schräge', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(234, 161, 256, 1555060909, 'Header', 'article-header-234', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-bl\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(235, 161, 384, 1575631587, 'Layout mit geradem Header', 'layout-mit-geradem-header', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(236, 122, 256, 1555061099, 'Rechte Spalte', 'rechte-spalte', 1, 'right', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(237, 162, 128, 1555061650, 'Text', 'text', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(238, 162, 64, 1555061378, 'Header', 'article-header-238', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-br\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(239, 162, 256, 1555061489, 'Schräge / oben rechts / unten rechts', 'schräge-oben-rechts-unten-rechts', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:24:\"primary-bg skw-tr skw-br\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(240, 162, 384, 1555061664, 'Text', 'text-240', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(241, 162, 512, 1555061700, 'Schräge / oben links / unten links', 'schräge-oben-links-unten-links', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:24:\"primary-bg skw-tl skw-bl\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(242, 162, 640, 1555061890, 'Text', 'text-242', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(243, 162, 768, 1555061781, 'Schräge / oben links / unten rechts', 'schräge-oben-links-unten-rechts', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:24:\"primary-bg skw-tl skw-br\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(244, 162, 896, 1555061898, 'Text', 'text-244', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(245, 162, 1024, 1555061840, 'Schräge / oben rechts / unten links', 'schräge-oben-rechts-unten-links', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:24:\"primary-bg skw-tr skw-bl\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(246, 162, 1152, 1555061883, 'Text', 'text-246', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(247, 162, 1280, 1555062292, 'Schräge / oben rechts', 'schräge-oben-rechts', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:17:\"primary-bg skw-tr\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(248, 162, 1408, 1555063442, 'Text', 'text-248', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(251, 139, 256, 1555067790, 'Kontaktdaten', 'kontaktdaten', 1, 'right', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(252, 139, 64, 1555068566, 'Header', 'article-header-252', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-br\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(253, 115, 256, 1560511469, 'Slider', 'slider-2', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:23:\"slider fullwidth skw-br\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(255, 164, 128, 1560781890, 'Modale Dialoge', 'module-modale-dialoge', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); - -INSERT INTO `tl_calendar` (`id`, `tstamp`, `title`, `jumpTo`, `protected`, `groups`, `allowComments`, `notify`, `sortOrder`, `perPage`, `moderate`, `bbcode`, `requireLogin`, `disableCaptcha`) VALUES(4, 1539184097, 'Odd / Events', 110, '', NULL, '', 'notify_admin', 'ascending', 0, '', '', '', ''); - -INSERT INTO `tl_calendar_events` (`id`, `pid`, `tstamp`, `title`, `alias`, `author`, `addTime`, `startTime`, `endTime`, `startDate`, `endDate`, `pageTitle`, `description`, `location`, `address`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `recurring`, `repeatEach`, `repeatEnd`, `recurrences`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `robots`, `featured`) VALUES(22, 4, 1552653016, 'Wohnhaus in der Rosengasse II', 'wohnhaus-in-der-rosengasse-ii', 1, '1', 1520668800, 1520683200, 1520636400, NULL, '', NULL, '', '', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', '1', '', 0xb2d63e05467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', '', '1', 'a:2:{s:4:\"unit\";s:5:\"years\";s:5:\"value\";s:1:\"2\";}', 2530526400, 16, '', '', 'default', 0, 0, '', '', '', '', '1', '', '', '', ''); -INSERT INTO `tl_calendar_events` (`id`, `pid`, `tstamp`, `title`, `alias`, `author`, `addTime`, `startTime`, `endTime`, `startDate`, `endDate`, `pageTitle`, `description`, `location`, `address`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `recurring`, `repeatEach`, `repeatEnd`, `recurrences`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `robots`, `featured`) VALUES(23, 4, 1552650339, 'Wohnhaus in der Rosengasse', 'wohnhaus-in-der-rosengasse', 1, '', 1538085600, 1538344799, 1538085600, 1538258400, '', NULL, '', '', '

Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', '1', '', 0xb0b560c5467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', '', '1', 'a:2:{s:4:\"unit\";s:5:\"years\";s:5:\"value\";s:1:\"1\";}', 2145913200, 0, '', '', 'default', 0, 0, '', '', '', '', '1', '', '', '', ''); -INSERT INTO `tl_calendar_events` (`id`, `pid`, `tstamp`, `title`, `alias`, `author`, `addTime`, `startTime`, `endTime`, `startDate`, `endDate`, `pageTitle`, `description`, `location`, `address`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `recurring`, `repeatEach`, `repeatEnd`, `recurrences`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `robots`, `featured`) VALUES(24, 4, 1552646068, 'Wohnhaus in der Görnischen Gasse', 'wohnhaus-in-der-görnischen-gasse', 1, '', 1535148000, 1535320799, 1535148000, 1535234400, '', NULL, '', '', '

Dieses Wohnhaus im Stil der Renaissance entstand um 1580.

', '1', '', 0xb525bf9c467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', '', '1', 'a:2:{s:4:\"unit\";s:5:\"years\";s:5:\"value\";s:1:\"1\";}', 2145913200, 0, '', '', 'default', 0, 0, '', '', '', '', '1', '', '', '', ''); -INSERT INTO `tl_calendar_events` (`id`, `pid`, `tstamp`, `title`, `alias`, `author`, `addTime`, `startTime`, `endTime`, `startDate`, `endDate`, `pageTitle`, `description`, `location`, `address`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `recurring`, `repeatEach`, `repeatEnd`, `recurrences`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `robots`, `featured`) VALUES(26, 4, 1552645990, 'Hamburger Hof', 'hamburger-hof', 1, '', 1543186800, 1545692399, 1543186800, 1545606000, '', NULL, '', '', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '1', '', 0xc942253a467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', '', '1', 'a:2:{s:4:\"unit\";s:5:\"years\";s:5:\"value\";s:1:\"1\";}', 2145913200, 0, '', '', 'default', 0, 0, '', '', '', '', '1', '', '', '', ''); -INSERT INTO `tl_calendar_events` (`id`, `pid`, `tstamp`, `title`, `alias`, `author`, `addTime`, `startTime`, `endTime`, `startDate`, `endDate`, `pageTitle`, `description`, `location`, `address`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `recurring`, `repeatEach`, `repeatEnd`, `recurrences`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `robots`, `featured`) VALUES(27, 4, 1552653008, 'Jahnhalle', 'jahnhalle', 1, '', 1514156400, 1514847599, 1514156400, 1514761200, '', NULL, '', '', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet.

', '1', '', 0xc416cb81467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', '1', 'a:2:{s:4:\"unit\";s:5:\"years\";s:5:\"value\";s:1:\"1\";}', 1767308399, 8, '', NULL, 'default', 0, 0, '', '', '', '', '1', '', '', '', ''); -INSERT INTO `tl_calendar_events` (`id`, `pid`, `tstamp`, `title`, `alias`, `author`, `addTime`, `startTime`, `endTime`, `startDate`, `endDate`, `pageTitle`, `description`, `location`, `address`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `recurring`, `repeatEach`, `repeatEnd`, `recurrences`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `robots`, `featured`) VALUES(28, 4, 1552652995, 'Zuckerwarenfabrik Elbdom', 'zuckerwarenfabrik-elbdom', 1, '1', 1517659200, 1517659200, 1517612400, NULL, '', NULL, '', '', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '1', '', 0xb0ad636c467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', '1', 'a:2:{s:4:\"unit\";s:5:\"years\";s:5:\"value\";s:1:\"1\";}', 1770120000, 8, '', NULL, 'default', 0, 0, '', '', '', '', '1', '', '', '', ''); - -INSERT INTO `tl_comments` (`id`, `tstamp`, `source`, `parent`, `date`, `name`, `email`, `website`, `member`, `comment`, `addReply`, `author`, `reply`, `published`, `ip`, `notified`, `notifiedReply`) VALUES(1, 1638439654, 'tl_news', 11, '1638439654', 'Max Mustermann', 'seibt@pdir.de', 'https://www.pdir.de', 0, '

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec.

', '', 0, NULL, '1', '88.76.172.192', '1', ''); - -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(381, 131, 'tl_article', 272, 1488455906, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:52:\"einfaches Bild mit Überschrift und Bildunterschrift\";}', NULL, '', '1', 0x512b86c6ff2011e6ba9f408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', 'mit Klasse \"smaller\" würde das Bild nur 400px hoch sein', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_header', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(382, 153, 'tl_article', 384, 1511280898, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

h1-Überschrift

\n

h2-Überschrift

\n

h3-Überschrift

\n

h4-Überschrift

\n
h5-Überschrift
\n
h6-Überschrift
', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(399, 12, 'tl_news', 128, 1552650130, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Das Kasernengelände in Meißen-Bohnitzsch wurde 1936 angelegt und wurde ab Mai 1945 von der Sowjetunion genutzt. Unter anderem war das 7. Garde-Panzerregiment der GSSD hier untergebracht.

', '', '', 0x6c880b87002611e88700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"300\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '', '', 'left', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(400, 153, 'tl_article', 576, 1539351368, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:89:\"Eine Überschrift mit der Klasse \"bordered-heading\" ist linksbündig und mit Unterstrich\";}', '

Eine Überschrift mit der Klasse \"bordered-heading\"
ist linksbündig und mit Unterstrich

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(401, 153, 'tl_article', 612, 1539351363, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:104:\"Eine Überschrift mit den Klassen \"bordered-heading text-sm-right\" ist rechtsbündig und mit Unterstrich\";}', '

Eine Überschrift mit den Klassen \"bordered-heading right\" ist rechtsbündig und mit Unterstrich

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-sm-right', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(402, 153, 'tl_article', 672, 1539351599, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

[class .col-12 .col-md-6] Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(403, 153, 'tl_article', 720, 1539351609, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

[class .col-12 .col-md-6] Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(404, 153, 'tl_article', 756, 1511282466, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(407, 118, 'tl_article', 128, 1554458686, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:24:\"Layout mit linker Spalte\";}', NULL, '', '', 0xc942253a467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', 'sdsds', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(414, 120, 'tl_article', 128, 1538492221, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 388, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(415, 146, 'tl_article', 128, 1539184159, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 386, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(420, 147, 'tl_article', 128, 1555073753, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 395, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(421, 147, 'tl_article', 64, 1644935706, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 398, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(422, 148, 'tl_article', 128, 1539331022, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 394, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(437, 120, 'tl_article', 512, 1538492248, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 387, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(438, 120, 'tl_article', 384, 1538492247, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 389, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(439, 147, 'tl_article', 256, 1555073754, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 396, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(440, 147, 'tl_article', 384, 1555073755, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 397, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(441, 147, 'tl_article', 96, 1555073751, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 399, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(460, 153, 'tl_article', 768, 1511280660, 'list', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:17:\"nummerierte Liste\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, 'ordered', 0x613a343a7b693a303b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a313b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a323b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a333b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b7d, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(461, 153, 'tl_article', 896, 1511280653, 'list', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:19:\"unnummerierte Liste\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, 'unordered', 0x613a343a7b693a303b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a313b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a323b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a333b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b7d, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(462, 132, 'tl_article', 384, 1511280957, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:11:\"Style Guide\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(463, 153, 'tl_article', 192, 1553878794, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:12:\"Textelemente\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(467, 153, 'tl_article', 1024, 1511284040, 'hyperlink', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:4:\"Link\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '{{link_url::90}}', '', '', 'Normaler Link', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '1', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(468, 153, 'tl_article', 1152, 1511284059, 'toplink', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', 'Top-Link', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '1', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(471, 154, 'tl_article', 128, 1552651351, 'accordionStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', 'Stadterkunden in Meißen auf eine ganz besondere Art', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(472, 154, 'tl_article', 256, 1552651360, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(473, 154, 'tl_article', 384, 1511284664, 'accordionStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(474, 154, 'tl_article', 512, 1552651391, 'accordionStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', 'Erinnerungen', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(475, 154, 'tl_article', 640, 1552651371, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(476, 154, 'tl_article', 768, 1511284674, 'accordionStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(477, 154, 'tl_article', 896, 1552651399, 'accordionStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', 'Botschaften aus der Vergangenheit', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(478, 154, 'tl_article', 1024, 1552651380, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(479, 154, 'tl_article', 1152, 1511284683, 'accordionStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(480, 154, 'tl_article', 64, 1553878812, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:9:\"Akkordion\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(504, 156, 'tl_article', 128, 1553878872, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:14:\"Media-Elemente\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(506, 156, 'tl_article', 512, 1554464836, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Dreispaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"510\";i:1;s:3:\"300\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a363a7b693a303b733a31363a22c09740c7467611e9a91c408d5c22fa41223b693a313b733a31363a22c433b88f467611e9a91c408d5c22fa41223b693a323b733a31363a22b92fb24e467611e9a91c408d5c22fa41223b693a333b733a31363a22c942253a467611e9a91c408d5c22fa41223b693a343b733a31363a22d285349b467611e9a91c408d5c22fa41223b693a353b733a31363a22c416cb81467611e9a91c408d5c22fa41223b7d, 0x613a363a7b693a303b733a31363a22c09740c7467611e9a91c408d5c22fa41223b693a313b733a31363a22c433b88f467611e9a91c408d5c22fa41223b693a323b733a31363a22b92fb24e467611e9a91c408d5c22fa41223b693a333b733a31363a22c942253a467611e9a91c408d5c22fa41223b693a343b733a31363a22d285349b467611e9a91c408d5c22fa41223b693a353b733a31363a22c416cb81467611e9a91c408d5c22fa41223b7d, '', 3, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(507, 156, 'tl_article', 1792, 1555056806, 'youtube', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, 'mfo0iHDrBN8', '', NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(509, 156, 'tl_article', 256, 1539353264, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:24:\"Galerie (Contao)\";}', '

Die Anordnung der Bilder passt sich je nachdem wie viele Spalten ausgewählt sind automatisch an.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(556, 169, 'tl_article', 128, 1553878919, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:20:\"Weitere ODD-Elemente\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(564, 169, 'tl_article', 256, 1516980271, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:11:\"Content Box\";}', '

Die Content Box lässt sich über das Inhaltselement mateContentBox an jeder beliebigen Stelle platzieren. Es kann eine Überschrift, ein Text sowie ein Link/Linktext angegeben werden. Breite und Farben der Boxen werden durch das Vergeben von CSS-Klassen bzw. über die CSS-Datei angepasst.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(565, 169, 'tl_article', 640, 1516980281, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:9:\"Teaserbox\";}', '

Die[nbsp]Teaserbox lässt sich über das Inhaltselement mateTeaserBox an jeder beliebigen Stelle platzieren. Es kann ein Bild, eine Überschrift, ein Text sowie ein Link/Linktext angegeben werden. Die Breite der Boxen[nbsp]kann durch das Vergeben von CSS-Klassen angepasst werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(567, 170, 'tl_article', 128, 1552650880, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:25:\"Layout mit rechter Spalte\";}', NULL, '', '', 0xc09740c7467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(571, 153, 'tl_article', 1408, 1539352121, 'table', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:30:\"Tabelle mit Elementtyp Tabelle\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, 0x613a353a7b693a303b613a333a7b693a303b733a363a22486561642031223b693a313b733a363a22486561642032223b693a323b733a363a22486561642033223b7d693a313b613a333a7b693a303b733a383a22436f6c756d6e2031223b693a313b733a383a22436f6c756d6e2032223b693a323b733a383a22436f6c756d6e2033223b7d693a323b613a333a7b693a303b733a383a22436f6c756d6e2031223b693a313b733a383a22436f6c756d6e2032223b693a323b733a383a22436f6c756d6e2033223b7d693a333b613a333a7b693a303b733a383a22436f6c756d6e2031223b693a313b733a383a22436f6c756d6e2032223b693a323b733a383a22436f6c756d6e2033223b7d693a343b613a333a7b693a303b733a383a22436f6c756d6e2031223b693a313b733a383a22436f6c756d6e2032223b693a323b733a383a22436f6c756d6e2033223b7d7d, '', '1', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(572, 153, 'tl_article', 1536, 1511528123, 'code', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:4:\"Code\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', 'JavaScript', '', '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(573, 153, 'tl_article', 1664, 1511528199, 'markdown', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', '## Markdown\n\nSince Contao 3.3.x Contao ships with the markdown content element. \n\n##### What is Markdown?\n\n> Markdown is a markup language with plain text formatting syntax designed so that it can be converted to HTML and many other formats using a tool by the same name.', '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:8:\"markdown\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(574, 171, 'tl_article', 128, 1553878882, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:17:\"Download-Elemente\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(575, 171, 'tl_article', 256, 1552651865, 'download', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, '', '', 0xb0ad636c467611e9a91c408d5c22fa41, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', 'Einzelnes Download-Element', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '1', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(576, 171, 'tl_article', 384, 1552651907, 'downloads', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:9:\"Downloads\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a363a7b693a303b733a31363a22bd8cb98b467611e9a91c408d5c22fa41223b693a313b733a31363a22d285349b467611e9a91c408d5c22fa41223b693a323b733a31363a22c416cb81467611e9a91c408d5c22fa41223b693a333b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b7d, 0x613a363a7b693a303b733a31363a22bd8cb98b467611e9a91c408d5c22fa41223b693a313b733a31363a22d285349b467611e9a91c408d5c22fa41223b693a323b733a31363a22c416cb81467611e9a91c408d5c22fa41223b693a333b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b7d, '', 4, 0, 0, 'custom', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(577, 120, 'tl_article', 64, 1553875697, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:4:\"News\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(578, 147, 'tl_article', 16, 1553877170, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:6:\"Events\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(580, 172, 'tl_article', 128, 1553877182, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:10:\"Navigation\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(589, 173, 'tl_article', 128, 1553877192, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:4:\"User\";}', '

Test-Zugangsdaten:

\n

User: mate-user
Passwort: mate theme

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(590, 173, 'tl_article', 256, 1539335021, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 403, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(592, 173, 'tl_article', 384, 1539335052, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 407, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(595, 173, 'tl_article', 304, 1539335029, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 404, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(596, 173, 'tl_article', 312, 1539335038, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 405, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(597, 173, 'tl_article', 316, 1539335046, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 406, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(599, 173, 'tl_article', 192, 1516703706, 'text', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:17:\"Test-Zugangsdaten\";}', '

Username: j.smith
Password: johnsmith

\n

Username: d.evans
Password: donnaevans

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(600, 177, 'tl_article', 128, 1525853618, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:9:\"Impressum\";}', '

Verantwortlicher Diensteanbieter im Sinne von § 5 Telemediengesetz (TMG),

\n

Inhaber der Domain www.example-domain.de

\n

Firma
Musterstraße 12
00000 Musterhausen

\n

Telefon: +49 (0)1234 / 5678910
E-Mail: info@example.de

\n

[nbsp]

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(601, 176, 'tl_article', 128, 1553877228, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:11:\"Anwendungen\";}', '

Für das, wie in den folgenden Formularen, dargestellte Upload-Feld, muss das Template form_mate_upload im Formulargenerator bei dem jeweiligen Element ausgewählt werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(602, 176, 'tl_article', 256, 1539346665, 'form', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:30:\"Formular (tabellenlos)\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 6, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(604, 178, 'tl_article', 128, 1511778265, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:30:\"Ihre Anfrage wurde übertragen\";}', '

Ihre Anfrage wurde erfolgreich versendet und wir werden uns in Kürze mit Ihnen in Verbindung setzen.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(605, 174, 'tl_article', 128, 1553877205, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:10:\"Newsletter\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(610, 179, 'tl_article', 128, 1539338156, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 410, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(611, 175, 'tl_article', 128, 1553877216, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:3:\"FAQ\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(612, 175, 'tl_article', 256, 1539344503, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 413, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(613, 175, 'tl_article', 384, 1539344513, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 414, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(614, 180, 'tl_article', 128, 1539344535, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 412, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(616, 181, 'tl_article', 128, 1539347874, 'module', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 415, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(617, 181, 'tl_article', 64, 1553877236, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:5:\"Suche\";}', '

Im Suchmaschinen-Modul muss das Template search_mate ausgewählt werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(625, 120, 'tl_article', 96, 1516979732, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:27:\"News mit Bildern und Teaser\";}', '

Für diese Newsliste muss das Template news_mate_latest ausgewählt werden. Im Modul der Detailansicht muss das Template news_mate_full ausgewählt werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(626, 120, 'tl_article', 256, 1516979739, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:16:\"News ohne Bilder\";}', '

Für diese Newsliste muss das Template news_mate_short[nbsp]ausgewählt werden. Im Modul der Detailansicht muss das Template[nbsp]news_mate_full[nbsp]ausgewählt werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(627, 120, 'tl_article', 448, 1516979744, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:18:\"einfache Newsliste\";}', '

Für die einfache Newsliste wird das Standard-Template news_simple verwendet. Im Modul der Detailansicht muss das Template[nbsp]news_mate_full[nbsp]ausgewählt werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(628, 147, 'tl_article', 112, 1555073752, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:22:\"Eventliste mit Bildern\";}', '

Für die Eventliste mit Bilder muss das Template event_mate_teaser ausgewählt werden. In der Detailansicht muss das Template event_mate_full ausgewählt sein.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(629, 147, 'tl_article', 192, 1555073753, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:22:\"Eventliste ohne Bilder\";}', '

Für die Eventliste[nbsp]ohne Bildern muss das Template event_mate_list[nbsp]ausgewählt werden. In der Detailansicht muss das Template event_mate_full ausgewählt sein.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(630, 147, 'tl_article', 320, 1555073754, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:19:\"einfache Eventliste\";}', '

Für die einfache Eventliste[nbsp]wird das Standard-Template event_upcoming verwendet. In der Detailansicht muss das Template event_mate_full ausgewählt sein.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(639, 172, 'tl_article', 224, 1539334631, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:22:\"Unterseiten-Navigation\";}', '

Navigations-Modul mit der Klasse subnav

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(654, 153, 'tl_article', 648, 1540221151, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(655, 153, 'tl_article', 726, 1540221157, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', '', '', '', '', '', 0, '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(662, 186, 'tl_article', 128, 1516628515, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:24:\"403 - Zugriff verweigert\";}', '

Auf die von Ihnen angeforderte Seite haben Sie leider keinen Zugriff.

\n

Sie könnten stattdessen zur Startseite navigieren oder uns kontaktieren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(663, 185, 'tl_article', 128, 1516628505, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:26:\"404 - Seite nicht gefunden\";}', '

Die von Ihnen angeforderte Seite wurde leider nicht gefunden. Vielleicht haben Sie sich vertippt oder die Seite existiert nicht mehr.

\n

Sie könnten stattdessen zur Startseite navigieren oder uns kontaktieren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(664, 156, 'tl_article', 1664, 1516980207, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"YouTube\";}', '

Damit sich das Video auch auf verschiedenen Endgeräten responsiv verhält, muss bei dem Elementtyp YouTube das Template ce_youtube_mate ausgewählt werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(680, 22, 'tl_calendar_events', 128, 1552650379, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', '', '', '', '', '', 0, '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(681, 23, 'tl_calendar_events', 128, 1552650346, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', '', '', '', '', '', 0, '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(682, 24, 'tl_calendar_events', 128, 1552650363, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Dieses Wohnhaus im Stil der Renaissance entstand um 1580.

', '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', '', '', '', '', '', 0, '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(684, 26, 'tl_calendar_events', 128, 1552650329, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', 0xd5b2a583028211e88700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"400\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', '', '', '', '', '', 0, '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(688, 10, 'tl_news', 128, 1552650042, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Dieses Wohnhaus im Stil der Renaissance entstand um 1580. Noch heute sind aus dieser Zeit zahlreiche Schmuckelemente am Haus erhalten: Tür- und Fenstergewände, Konsolsteine und Deckengewölbe.

', '', '', 0xde74085cfd2011e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"500\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:2:\"15\";s:4:\"unit\";s:2:\"px\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(689, 11, 'tl_news', 128, 1552650025, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', '', '', 0xa09827bfcb5d11e79a22408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:1:\"0\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:2:\"15\";s:4:\"unit\";s:2:\"px\";}', '', '', '', 'left', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(701, 27, 'tl_calendar_events', 128, 1552650410, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet.

', '', '', 0xd05728a0028211e88700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"500\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '', '', 'left', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(702, 28, 'tl_calendar_events', 128, 1552650395, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"300\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:2:\"15\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(706, 23, 'tl_news', 32, 1552650056, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Die Ziegelei am Roten Haus war die letzte ihrer Art in Meißen, sie war nach fast 140 Jahren Produktion 1993 geschlossen worden.

', '', '', 0xa09827bfcb5d11e79a22408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:1:\"0\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:2:\"15\";s:4:\"unit\";s:2:\"px\";}', '', '', '', 'left', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(707, 24, 'tl_news', 128, 1552650073, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Das ehemalige Landkrankenhaus ist seit dem Neubau der Elblandklinik in Meißen-Bohnitzsch ungenutzt.

', '', '', 0x7009c414028811e88700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"700\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:2:\"30\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(708, 25, 'tl_news', 32, 1552650084, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Zum \"Elbdom\"-Areal gehörte in den letzten 20 Jahren auch das Grundstück der Unternehmerfamilie Clemens Kurtz in der Dresdner Straße 19.

', '', '', 0xbeaf67b1028211e88700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"400\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:1:\"0\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '', '', 'left', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(709, 26, 'tl_news', 128, 1552650101, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(721, 159, 'tl_article', 128, 1552650587, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe.[nbsp]929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(724, 159, 'tl_article', 1280, 1539349367, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(725, 159, 'tl_article', 1152, 1517229796, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Letzte Blogeinträge\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(726, 159, 'tl_article', 256, 1552650787, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(735, 190, 'tl_article', 448, 1539341311, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 409, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(743, 159, 'tl_article', 384, 1540220710, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(744, 159, 'tl_article', 1024, 1540220716, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', '', '', '', '', '', 0, '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(745, 159, 'tl_article', 512, 1552650706, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(746, 159, 'tl_article', 640, 1552650714, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(747, 159, 'tl_article', 768, 1552650650, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(748, 159, 'tl_article', 896, 1552650692, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(749, 159, 'tl_article', 320, 1552650561, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(783, 193, 'tl_article', 128, 1555060980, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:20:\"Dreispaltiges Layout\";}', NULL, '', '', 0xae24b6cc467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(784, 194, 'tl_article', 128, 1553878074, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:19:\"Einspaltiges Layout\";}', NULL, '', '', 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(792, 184, 'tl_article', 124, 1555068392, 'form', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 8, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(797, 251, 'tl_article', 128, 1555069654, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:12:\"Kontaktdaten\";}', '

Mustermann GmbH
Musterstraße 12
00000 Musterhausen

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(803, 184, 'tl_article', 64, 1555068611, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:30:\"Bleiben Sie mit uns in Kontakt\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(807, 153, 'tl_article', 1280, 1517820154, 'hyperlink', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '#', '', '', 'Button', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"btn\";}', '', '', '', '', '', NULL, '1', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(810, 145, 'tl_article', 128, 1644834392, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, '', '1', 0xc96d0cf7472811e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"25\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '{{link_url::90|urlattr}}', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(812, 182, 'tl_article', 256, 1553852915, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

info@example.org

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:5:\"email\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', NULL, 'far fa-envelope', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(813, 182, 'tl_article', 384, 1540216548, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:12:\"social-media\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(814, 182, 'tl_article', 512, 1540216554, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(815, 182, 'tl_article', 448, 1540306869, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Facebook

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', 'https://www.facebook.com/', 'fab fa-facebook-f', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(816, 182, 'tl_article', 480, 1540306883, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Twitter

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', 'https://twitter.com/', 'fab fa-twitter', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(817, 182, 'tl_article', 496, 1540306897, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Instagram

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', 'https://www.instagram.com/', 'fab fa-instagram', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(818, 182, 'tl_article', 504, 1540306925, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Pinterest

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', 'https://www.pinterest.de/', 'fab fa-pinterest-p', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(819, 182, 'tl_article', 508, 1540306943, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Linked In

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', 'https://de.linkedin.com/', 'fab fa-linkedin-in', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(820, 136, 'tl_article', 128, 1538490759, 'text', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Adressdaten\";}', '

Musterfirma GmbH
Musterstraße 127
01234 Musterstadt

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(821, 137, 'tl_article', 128, 1553270517, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

+ 49 (0) 0123 4567890

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-phone', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(822, 137, 'tl_article', 256, 1540216645, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

+ 49 (0) 0123 456789

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-mobile', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(823, 137, 'tl_article', 384, 1540216655, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

+ 49 (0) 0123 4567891

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-fax', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(824, 137, 'tl_article', 512, 1540563691, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

info@example.org

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'far fa-envelope', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(825, 137, 'tl_article', 64, 1538491017, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:12:\"Kontaktdaten\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(826, 138, 'tl_article', 128, 1540307110, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Facebook

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-facebook-f', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(827, 138, 'tl_article', 256, 1540307120, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Twitter

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-twitter', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(828, 138, 'tl_article', 384, 1540307160, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Instagram

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-instagram', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(829, 138, 'tl_article', 512, 1540307177, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Pinterest

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-pinterest-p', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(830, 138, 'tl_article', 640, 1540307187, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Linked In

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-linkedin-in', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(831, 138, 'tl_article', 64, 1538491124, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:12:\"Social Media\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(832, 139, 'tl_article', 128, 1538491199, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:9:\"Odd Theme\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(833, 139, 'tl_article', 256, 1538491192, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 373, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(834, 140, 'tl_article', 128, 1560846799, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

© Firma / {{date::Y}} / Odd Theme by montequesto

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(838, 117, 'tl_article', 128, 1553851804, 'sliderStart', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '1', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(839, 117, 'tl_article', 256, 1539088811, 'sliderStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(840, 117, 'tl_article', 192, 1552657173, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Dank der Saalkapazitäten fanden in dem traditionsreichen Haus zahlreiche Großveranstaltungen statt. Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '1', '', 0xc942253a467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Kultur & Freizeit', 'Mehr dazu', '{{event_url::26}}', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(841, 117, 'tl_article', 224, 1552657262, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Keramikfabrik\";}', '

Bei der Produktion von Kachelöfen, Wandplatten, Porzellanen und Schamotte war Meißen um 1900 führend in Deutschland. Die für Kachelöfen entwickelte Meißner Patentkachel war wohl in den meisten deutschen Wohnzimmern zu finden.

', '1', '', 0xae24b6cc467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Industrie', 'Mehr dazu', '{{link_url::120}}', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(842, 117, 'tl_article', 208, 1552657181, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '1', '', 0xc416cb81467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Sport', 'Mehr erfahren', '{{event_url::27}}', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(843, 117, 'tl_article', 248, 1552657268, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:29:\"E-Werk in der Brauhausstraße\";}', '

Das ehemalige Elektrizitätswerk an der Brauhausstraße ging 1911 in Betrieb und lieferte Strom für die Meißner Innenstadt. Nach 1990 wurde das E-Werk stillgelegt und 2004 wurde das Kesselhaus im hinteren Grundstücksbereich abgerissen.

', '1', '', 0xb92fb24e467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Industrie', 'Weiterlesen', '{{link_url::121}}', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(844, 117, 'tl_article', 216, 1552657188, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:21:\"Kaserne in Bohnitzsch\";}', '

Das Kasernengelände in Meißen-Bohnitzsch wurde 1936 angelegt und wurde ab Mai 1945 von der Sowjetunion genutzt. Unter anderem war das 7. Garde-Panzerregiment der GSSD hier untergebracht.

', '1', '', 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Militär', 'Mehr dazu', '{{news_url::12}}', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(845, 197, 'tl_article', 128, 1552643659, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:28:\"bordered-heading text-center\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(846, 197, 'tl_article', 256, 1540220465, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(847, 197, 'tl_article', 384, 1540220471, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(848, 197, 'tl_article', 320, 1552644010, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(849, 197, 'tl_article', 352, 1552643989, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(850, 198, 'tl_article', 128, 1539096876, 'module', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Platzhalter für Newsboxen

\n

orem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(851, 199, 'tl_article', 128, 1540215730, 'ct_wrapperStart', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Platzhalter für Teaserboxen

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(853, 199, 'tl_article', 256, 1540215704, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(855, 199, 'tl_article', 224, 1554457312, 'ct_teaserBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:22:\"Ziegelei am Roten Haus\";}', '

Die Spezialität der Ziegelei war zu DDR-Zeiten die Herstellung von Hochlochziegeln - leichten, großformatigen Ziegeln für den Wohnungsbau.

', '1', '', 0xc433b88f467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, 'Mehr dazu', '{{news_url::23}}', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-4', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(856, 199, 'tl_article', 240, 1554457318, 'ct_teaserBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '1', '', 0xb0ad636c467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, 'Mehr dazu', '{{event_url::28}}', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-4', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(859, 198, 'tl_article', 64, 1552662465, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:9:\"Aktuelles\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-center', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(861, 201, 'tl_article', 128, 1539184642, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 393, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(862, 202, 'tl_article', 128, 1539331252, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 400, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(863, 172, 'tl_article', 352, 1539334592, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 384, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(864, 203, 'tl_article', 128, 1539339890, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Vielen Dank!\";}', '

Vielen Dank für die Abonnierung unseres Newsletters. Zur Aktivierung Ihres Abonnements ist es erforderlich, dass Sie den Aktivierungslink in der zugesandten E-Mail anklicken.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:11:\"text-center\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(866, 189, 'tl_article', 128, 1539341275, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 408, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(873, 174, 'tl_article', 256, 1539343980, 'hyperlink', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '{{link_url::144}}', '', '', 'Newsletter abonnieren', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '1', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(874, 174, 'tl_article', 384, 1539343998, 'hyperlink', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '{{link_url::145}}', '', '', 'Newsletter abbestellen', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '1', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(876, 153, 'tl_article', 630, 1553879193, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:101:\"Eine Überschrift mit den Klassen \"bordered-heading text-sm-center\" ist zentriert und mit Unterstrich\";}', '

Eine Überschrift mit den Klassen \"bordered-heading right\" ist rechtsbündig und mit Unterstrich

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-sm-center', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(877, 153, 'tl_article', 1472, 1539352288, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:27:\"Tabelle mit Elementtyp Text\";}', '\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Column 1Column 2Column 3
Column 1Column 2Column 3
Column 1Column 2Column 3
Verbundene Zeilen
', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(885, 209, 'tl_article', 256, 1554457368, 'ct_contentBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Dank der Saalkapazitäten fanden in dem traditionsreichen Haus zahlreiche Großveranstaltungen statt. Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-3\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr dazu', '{{event_url::26}}', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(886, 209, 'tl_article', 128, 1540222509, 'ct_wrapperStart', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Platzhalter für Teaserboxen

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"row no-margin\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit der Klasse \'row\'', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(887, 209, 'tl_article', 640, 1540215843, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(889, 199, 'tl_article', 160, 1554457306, 'ct_teaserBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:19:\"Das Landkrankenhaus\";}', '

Das ehemalige Landkrankenhaus ist seit dem Neubau der Elblandklinik in Meißen-Bohnitzsch ungenutzt.

', '1', '', 0xce7c80c2467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, 'Mehr dazu', '{{news_url::24}}', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(890, 209, 'tl_article', 384, 1552652907, 'ct_contentBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Keramikfabrik\";}', '

Bei der Produktion von Kachelöfen, Wandplatten, Porzellanen und Schamotte war Meißen um 1900 führend in Deutschland. Die für Kachelöfen entwickelte Meißner Patentkachel war wohl in den meisten deutschen Wohnzimmern zu finden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-3\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr dazu', '{{link_url::120}}', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(892, 182, 'tl_article', 64, 1553852907, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

+ 49 (0) 123 45678

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:5:\"phone\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', NULL, 'fas fa-phone', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(893, 169, 'tl_article', 768, 1553879082, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:22:\"Preis-Tabelle 3 stufig\";}', '

Beispiel 1:

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(894, 169, 'tl_article', 896, 1540307443, 'ct_priceBox', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"Paket A\";}', '

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', 'Mehr Infos', '{{link_url::90}}', 'Jetzt bestellen', '{{link_url::90}}', 'pro Monat, zzgl. MwSt.', '99,99 €', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(895, 169, 'tl_article', 832, 1540301947, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"row no-margin\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(896, 169, 'tl_article', 1024, 1540217731, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(897, 169, 'tl_article', 960, 1540307450, 'ct_priceBox', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"Paket B\";}', '

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', 'Am beliebtesten', 'Mehr Infos', '90', 'Jetzt bestellen', '90', 'pro Monat, zzgl. MwSt.', '249,99 €', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(898, 169, 'tl_article', 992, 1540219169, 'ct_priceBox', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"Paket C\";}', '

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', 'Mehr Infos', '90', 'Jetzt bestellen', '90', 'pro Monat, zzgl. MwSt.', '49,99 €', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(899, 169, 'tl_article', 1152, 1540219594, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:19:\"Einfache Inhaltsbox\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(900, 169, 'tl_article', 1280, 1552652309, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:24:\"Stadterkunden in Meißen\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(901, 169, 'tl_article', 1216, 1540219647, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(902, 169, 'tl_article', 1408, 1540219653, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(903, 169, 'tl_article', 1344, 1552652333, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:12:\"Erinnerungen\";}', '

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(904, 169, 'tl_article', 704, 1540219734, 'ct_wrapperStart', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Platzhalter für Teaserboxen

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(905, 169, 'tl_article', 736, 1552652219, 'ct_teaserBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:19:\"Wohnhaus Rosengasse\";}', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', '1', '', 0xb81fbc97467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, 'Mehr dazu', '90', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(906, 169, 'tl_article', 752, 1552652238, 'ct_teaserBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Keramikfabrik\";}', '

Bei der Produktion von Kachelöfen, Wandplatten, Porzellanen und Schamotte war Meißen um 1900 führend in Deutschland. Die für Kachelöfen entwickelte Meißner Patentkachel war wohl in den meisten deutschen Wohnzimmern zu finden.

', '1', '', 0xae24b6cc467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, 'Mehr dazu', '90', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-4', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(907, 169, 'tl_article', 760, 1552652257, 'ct_teaserBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '1', '', 0xc416cb81467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, 'Mehr dazu', '90', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-4', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(908, 169, 'tl_article', 764, 1540219734, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(909, 169, 'tl_article', 448, 1540219772, 'ct_wrapperStart', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie)', '

Platzhalter für Teaserboxen

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit der Klasse \'row\'', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(910, 169, 'tl_article', 544, 1552652156, 'ct_contentBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr dazu', '90', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(911, 169, 'tl_article', 592, 1552652166, 'ct_contentBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Keramikfabrik\";}', '

Bei der Produktion von Kachelöfen, Wandplatten, Porzellanen und Schamotte war Meißen um 1900 führend in Deutschland. Die für Kachelöfen entwickelte Meißner Patentkachel war wohl in den meisten deutschen Wohnzimmern zu finden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr dazu', '90', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(912, 169, 'tl_article', 616, 1552652180, 'ct_contentBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:19:\"Wohnhaus Rosengasse\";}', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr dazu', '90', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(913, 169, 'tl_article', 628, 1540219772, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(914, 209, 'tl_article', 512, 1554457380, 'ct_contentBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:19:\"Wohnhaus Rosengasse\";}', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-3\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr erfahren', '{{news_url::11}}', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(915, 209, 'tl_article', 352, 1552652897, 'ct_contentBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-3\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr dazu', '{{event_url::27}}', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(917, 169, 'tl_article', 1088, 1553879106, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:21:\"Preistabelle 2 stufig\";}', '

Beispiel 1:

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(918, 169, 'tl_article', 1120, 1540301976, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"row no-margin\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(919, 169, 'tl_article', 1136, 1540302061, 'ct_priceBox', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"Paket A\";}', '

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-6\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', 'Mehr Infos', '90', 'Jetzt bestellen', '90', 'pro Monat, zzgl. MwSt.', '99,99 €', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(920, 169, 'tl_article', 1144, 1540302044, 'ct_priceBox', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"Paket B\";}', '

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-6\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', 'Mehr Infos', '90', 'Jetzt bestellen', '90', 'pro Monat, zzgl. MwSt.', '249,99 €', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(922, 169, 'tl_article', 1150, 1540301976, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(927, 210, 'tl_article', 256, 1540306574, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(928, 210, 'tl_article', 320, 1553869218, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Diese Räumlichkeiten sind Zeitdokumente. Ihre Ablichtung vielleicht die letzte vor dem endgültigen Abriss oder vor einer Sanierung, die alle Spuren der Vergangenheit verwischen werden. Sie wurden sorgfältig dokumentiert, ohne am Ort etwas zu verändern. Da die Fotografien grundsätzlich im - oft sehr spärlichen - natürlichen Licht vor Ort aufgenommen wurden, kam meist die HDR-Technik zum Einsatz, die

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(929, 210, 'tl_article', 352, 1553869224, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Abbildungen mit hocher Farbintensität und fast malerischem Flair hervorbringt. Die Bilder entstanden im Einverständnis der jeweiligen Grundstückseigentümer.
Der Autor dankt allen, die ihm den Besuch dieser verlassenen Orte ermöglichten und der Veröffentlichung der dort entstandenen Aufnahmen zustimmten.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(930, 210, 'tl_article', 384, 1540306574, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(931, 117, 'tl_article', 252, 1552657274, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"VEB Ziegelwerk Rotes Haus\";}', '

Die Ziegelei am Roten Haus war die letzte ihrer Art in Meißen, sie war nach fast 140 Jahren Produktion 1993 geschlossen worden.

', '1', '', 0xc09740c7467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Industrie', 'Weiterlesen', '{{news_url::23}}', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(933, 210, 'tl_article', 512, 1553875181, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:5:\"quote\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(934, 160, 'tl_article', 128, 1552650990, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe.[nbsp]929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(935, 160, 'tl_article', 256, 1552650983, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(936, 160, 'tl_article', 384, 1552650995, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(937, 160, 'tl_article', 512, 1552650983, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(938, 160, 'tl_article', 640, 1552651001, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(939, 160, 'tl_article', 768, 1552651007, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(940, 160, 'tl_article', 896, 1552651013, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(941, 160, 'tl_article', 1024, 1552651018, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(942, 160, 'tl_article', 1152, 1552650983, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', '', '', '', '', '', 0, '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(943, 160, 'tl_article', 1280, 1552651024, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Letzte Blogeinträge\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(944, 160, 'tl_article', 1408, 1552650983, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(945, 161, 'tl_article', 128, 1552651039, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe.[nbsp]929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(946, 161, 'tl_article', 256, 1552651034, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(947, 161, 'tl_article', 384, 1552651047, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(948, 161, 'tl_article', 512, 1552651034, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(949, 161, 'tl_article', 640, 1552651092, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(950, 161, 'tl_article', 768, 1552651098, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(951, 161, 'tl_article', 896, 1552651105, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(952, 161, 'tl_article', 1024, 1552651111, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(953, 161, 'tl_article', 1152, 1552651034, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', '', '', '', '', '', 0, '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(954, 161, 'tl_article', 1280, 1552651122, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Letzte Blogeinträge\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(955, 161, 'tl_article', 1408, 1552651034, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(956, 165, 'tl_article', 128, 1552651144, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe.[nbsp]929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(957, 165, 'tl_article', 256, 1552651140, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(958, 165, 'tl_article', 384, 1552651150, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(959, 165, 'tl_article', 512, 1552651140, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(960, 165, 'tl_article', 640, 1552651155, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(961, 165, 'tl_article', 768, 1552651161, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(962, 165, 'tl_article', 896, 1552651166, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(963, 165, 'tl_article', 1024, 1552651172, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(964, 165, 'tl_article', 1152, 1552651140, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', '', '', '', '', '', 0, '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(965, 165, 'tl_article', 1280, 1552651187, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Letzte Blogeinträge\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(966, 165, 'tl_article', 1408, 1552651140, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(978, 156, 'tl_article', 640, 1554464808, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Vierspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a343a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b7d, 0x613a343a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b7d, '', 4, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(986, 169, 'tl_article', 1536, 1552653271, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-home', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(987, 169, 'tl_article', 1664, 1552653413, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-check', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(988, 169, 'tl_article', 1472, 1552653438, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:14:\"Text mit Icons\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(989, 199, 'tl_article', 64, 1553867230, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:14:\"Die Highlights\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:28:\"bordered-heading text-center\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(990, 210, 'tl_article', 128, 1553877648, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:28:\"bordered-heading text-center\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(991, 210, 'tl_article', 640, 1553868952, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Alle Fotos © Claus-Dirk Langer, Dresden/Meißen

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(998, 214, 'tl_article', 64, 1553870516, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"row no-margin\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(999, 214, 'tl_article', 116, 1553873824, 'ct_priceBox', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Urban Exploring Foto-Reise\";}', '

Hin und Rückfahrt

\n

5 tägige Abenteuerreise

\n

Übernachtung und volle Verpflegung

\n

Urbexplorer/örtlicher Guide

\n

Urbexplorer Expeditionsfahrzeug

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', 'Am beliebtesten', 'Mehr Infos', '{{link_url::93}}', 'Jetzt bestellen', '{{link_url::139}}', 'max. 7 Personen', '550 €', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1000, 214, 'tl_article', 112, 1553873803, 'ct_priceBox', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Urban Exploring Foto-Tour\";}', '

bis zu 10 Stunden fotografieren

\n

3 atemberaubende Industrieobjekte

\n

Übernachtung mit Frühstück

\n

Mitfahrgelegenheit

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', 'Mehr Infos', '{{link_url::93}}', 'Jetzt bestellen', '{{link_url::139}}', 'pro Person, inkl. MwSt.', '180 €', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1001, 214, 'tl_article', 120, 1553873842, 'ct_priceBox', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:30:\"Urban Exploring Foto-Abenteuer\";}', '

9 Tage Fotoabenteuer

\n

inclusive Flug von Deutschland

\n

Übernachtung in Guesthouses

\n

deutschsprachiger Guide von Urbexplorer

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', 'Mehr Infos', '{{link_url::93}}', 'Jetzt bestellen', '{{link_url::139}}', 'Gruppenrabatt möglich', '1.490 €', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1002, 214, 'tl_article', 124, 1553870516, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1003, 215, 'tl_article', 128, 1553873070, 'html', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', '
', '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', '
', '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:8:\"bordered\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1006, 216, 'tl_article', 128, 1553873079, 'html', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', '
', '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', '
', '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:8:\"bordered\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1007, 156, 'tl_article', 384, 1554464827, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Zweispaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"510\";i:1;s:3:\"200\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a323a7b693a303b733a31363a22b92fb24e467611e9a91c408d5c22fa41223b693a313b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b7d, 0x613a323a7b693a303b733a31363a22b92fb24e467611e9a91c408d5c22fa41223b693a313b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b7d, '', 2, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1020, 220, 'tl_article', 128, 1554459204, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:24:\"Headerbild ohne Schräge\";}', NULL, '', '', 0xc942253a467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"16\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', 'sdsds', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1022, 156, 'tl_article', 768, 1554464897, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:12:\"Fünfspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a353a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b7d, 0x613a353a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b7d, '', 5, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1023, 156, 'tl_article', 896, 1554464908, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Sechspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a363a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b7d, 0x613a363a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b7d, '', 6, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1024, 156, 'tl_article', 1024, 1554464918, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:13:\"Siebenspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a373a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b7d, 0x613a373a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b7d, '', 7, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1025, 156, 'tl_article', 1152, 1554464925, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Achtspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a383a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b7d, 0x613a383a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b7d, '', 8, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1026, 156, 'tl_article', 1280, 1554464985, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Neunspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a393a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a383b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b7d, 0x613a393a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a383b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b7d, '', 9, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1027, 156, 'tl_article', 1408, 1554464993, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Zehnspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a31303a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a383b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b693a393b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b7d, 0x613a31303a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a383b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b693a393b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b7d, '', 10, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1028, 156, 'tl_article', 1472, 1554465027, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:10:\"Elfspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a31313a7b693a303b733a31363a22c09740c7467611e9a91c408d5c22fa41223b693a313b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a323b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a333b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a343b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a353b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a363b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a373b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a383b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a393b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b693a31303b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b7d, 0x613a31313a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a383b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b693a393b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b693a31303b733a31363a22c09740c7467611e9a91c408d5c22fa41223b7d, '', 11, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1029, 156, 'tl_article', 1504, 1554465044, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:13:\"Zwölfspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a31323a7b693a303b733a31363a22c09740c7467611e9a91c408d5c22fa41223b693a313b733a31363a22c433b88f467611e9a91c408d5c22fa41223b693a323b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a333b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a343b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a353b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a363b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a373b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a383b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a393b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a31303b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b693a31313b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b7d, 0x613a31323a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a383b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b693a393b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b693a31303b733a31363a22c09740c7467611e9a91c408d5c22fa41223b693a31313b733a31363a22c433b88f467611e9a91c408d5c22fa41223b7d, '', 12, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1033, 228, 'tl_article', 128, 1555060408, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:34:\"Headerbild mit Schräge nach links\";}', NULL, '', '', 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1034, 229, 'tl_article', 128, 1555059685, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe.[nbsp]929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1035, 229, 'tl_article', 256, 1555059685, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1036, 229, 'tl_article', 384, 1555059685, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1037, 229, 'tl_article', 512, 1555059685, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1038, 229, 'tl_article', 640, 1555059685, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1039, 229, 'tl_article', 768, 1555059685, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1040, 229, 'tl_article', 896, 1555059685, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1041, 229, 'tl_article', 1024, 1555059685, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1042, 229, 'tl_article', 1152, 1555059685, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', '', '', '', '', '', 0, '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1043, 229, 'tl_article', 1280, 1555059685, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Letzte Blogeinträge\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1044, 229, 'tl_article', 1408, 1555059685, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1045, 230, 'tl_article', 128, 1555060418, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:35:\"Headerbild mit Schräge nach rechts\";}', NULL, '', '', 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1046, 231, 'tl_article', 128, 1555060297, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe.[nbsp]929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1047, 231, 'tl_article', 256, 1555060297, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1048, 231, 'tl_article', 384, 1555060297, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1049, 231, 'tl_article', 512, 1555060297, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1050, 231, 'tl_article', 640, 1555060297, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1051, 231, 'tl_article', 768, 1555060297, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1052, 231, 'tl_article', 896, 1555060297, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1053, 231, 'tl_article', 1024, 1555060297, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1054, 231, 'tl_article', 1152, 1555060297, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', '', '', '', '', '', 0, '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1055, 231, 'tl_article', 1280, 1555060297, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Letzte Blogeinträge\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1056, 231, 'tl_article', 1408, 1555060297, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1057, 232, 'tl_article', 128, 1555060437, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe.[nbsp]929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1058, 232, 'tl_article', 256, 1555060437, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1059, 232, 'tl_article', 384, 1555060437, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1060, 232, 'tl_article', 512, 1555060437, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1061, 232, 'tl_article', 640, 1555060437, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1062, 232, 'tl_article', 768, 1555060437, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1063, 232, 'tl_article', 896, 1555060437, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1064, 232, 'tl_article', 1024, 1555060437, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1065, 232, 'tl_article', 1152, 1555060437, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', '', '', '', '', '', 0, '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1066, 232, 'tl_article', 1280, 1555060437, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Letzte Blogeinträge\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1067, 232, 'tl_article', 1408, 1555060437, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1068, 234, 'tl_article', 128, 1575631603, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:25:\"Layout mit geradem Header\";}', NULL, '', '', 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1069, 235, 'tl_article', 128, 1555060887, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe.[nbsp]929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1070, 235, 'tl_article', 256, 1555060887, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1071, 235, 'tl_article', 384, 1555060887, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1072, 235, 'tl_article', 512, 1555060887, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1073, 235, 'tl_article', 640, 1555060887, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1074, 235, 'tl_article', 768, 1555060887, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1075, 235, 'tl_article', 896, 1555060887, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1076, 235, 'tl_article', 1024, 1555060887, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1077, 235, 'tl_article', 1152, 1555060887, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', '', '', '', '', '', 0, '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1078, 235, 'tl_article', 1280, 1555060887, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Letzte Blogeinträge\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1079, 235, 'tl_article', 1408, 1555060887, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1081, 238, 'tl_article', 128, 1555061396, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:22:\"Elemente mit Schrägen\";}', NULL, '', '', 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1082, 239, 'tl_article', 64, 1555061513, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:37:\"Schräge - oben rechts - unten rechts\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-center', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1083, 239, 'tl_article', 128, 1555061529, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1085, 237, 'tl_article', 256, 1555061622, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1086, 240, 'tl_article', 256, 1555061657, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1087, 241, 'tl_article', 64, 1555061727, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:35:\"Schräge - oben links - unten links\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-center', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1088, 241, 'tl_article', 128, 1555061671, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1089, 242, 'tl_article', 256, 1555061752, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1090, 243, 'tl_article', 64, 1555061799, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:36:\"Schräge - oben links - unten rechts\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-center', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1091, 243, 'tl_article', 128, 1555061752, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1092, 244, 'tl_article', 256, 1555061752, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1093, 245, 'tl_article', 64, 1555061872, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:36:\"Schräge - oben rechts - unten links\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-center', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1094, 245, 'tl_article', 128, 1555061752, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1095, 246, 'tl_article', 256, 1555061878, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1096, 247, 'tl_article', 64, 1555062327, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Schräge - nur oben rechts\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-center', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1097, 247, 'tl_article', 128, 1555062276, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1098, 248, 'tl_article', 256, 1555062276, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1099, 236, 'tl_article', 256, 1555062388, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Letzte Blogeinträge\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1100, 236, 'tl_article', 384, 1555062381, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1104, 252, 'tl_article', 128, 1555068558, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:7:\"Kontakt\";}', NULL, '', '', 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1105, 251, 'tl_article', 256, 1555068793, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:12:\"Social Media\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1106, 251, 'tl_article', 384, 1555068772, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Facebook

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-facebook-f', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1107, 251, 'tl_article', 512, 1555068772, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Twitter

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-twitter', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1108, 251, 'tl_article', 640, 1555068772, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Instagram

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-instagram', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1109, 251, 'tl_article', 768, 1555068772, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Pinterest

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-pinterest-p', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1110, 251, 'tl_article', 896, 1555068772, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Linked In

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-linkedin-in', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1111, 251, 'tl_article', 320, 1555069491, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"contact-icons\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1112, 251, 'tl_article', 1024, 1555068866, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1113, 251, 'tl_article', 192, 1555069533, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

+ 49 (0) 0123 4567890

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-phone', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1114, 251, 'tl_article', 224, 1555069533, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

+ 49 (0) 0123 456789

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-mobile', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1115, 251, 'tl_article', 240, 1555069533, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

+ 49 (0) 0123 4567891

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-fax', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1116, 251, 'tl_article', 248, 1555069534, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

info@example.org

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'far fa-envelope', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1117, 251, 'tl_article', 160, 1555069542, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"contact-icons\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1118, 251, 'tl_article', 252, 1555069547, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1119, 253, 'tl_article', 128, 1560511460, 'sliderStart', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '1', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1120, 253, 'tl_article', 192, 1560511460, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Dank der Saalkapazitäten fanden in dem traditionsreichen Haus zahlreiche Großveranstaltungen statt. Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '1', '', 0xc942253a467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Kultur & Freizeit', 'Mehr dazu', '{{event_url::26}}', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1121, 253, 'tl_article', 208, 1560511460, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '1', '', 0xc416cb81467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Sport', 'Mehr erfahren', '{{event_url::27}}', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1122, 253, 'tl_article', 216, 1560511460, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:21:\"Kaserne in Bohnitzsch\";}', '

Das Kasernengelände in Meißen-Bohnitzsch wurde 1936 angelegt und wurde ab Mai 1945 von der Sowjetunion genutzt. Unter anderem war das 7. Garde-Panzerregiment der GSSD hier untergebracht.

', '1', '', 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Militär', 'Mehr dazu', '{{news_url::12}}', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1123, 253, 'tl_article', 224, 1560511460, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Keramikfabrik\";}', '

Bei der Produktion von Kachelöfen, Wandplatten, Porzellanen und Schamotte war Meißen um 1900 führend in Deutschland. Die für Kachelöfen entwickelte Meißner Patentkachel war wohl in den meisten deutschen Wohnzimmern zu finden.

', '1', '', 0xae24b6cc467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Industrie', 'Mehr dazu', '{{link_url::120}}', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1124, 253, 'tl_article', 248, 1560511460, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:29:\"E-Werk in der Brauhausstraße\";}', '

Das ehemalige Elektrizitätswerk an der Brauhausstraße ging 1911 in Betrieb und lieferte Strom für die Meißner Innenstadt. Nach 1990 wurde das E-Werk stillgelegt und 2004 wurde das Kesselhaus im hinteren Grundstücksbereich abgerissen.

', '1', '', 0xb92fb24e467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Industrie', 'Weiterlesen', '{{link_url::121}}', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1125, 253, 'tl_article', 252, 1560511460, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"VEB Ziegelwerk Rotes Haus\";}', '

Die Ziegelei am Roten Haus war die letzte ihrer Art in Meißen, sie war nach fast 140 Jahren Produktion 1993 geschlossen worden.

', '1', '', 0xc09740c7467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Industrie', 'Weiterlesen', '{{news_url::23}}', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1126, 253, 'tl_article', 256, 1560511460, 'sliderStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1129, 255, 'tl_article', 128, 1560782354, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:14:\"Modale Dialoge\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', 'none', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1130, 255, 'tl_article', 256, 1560782390, 'module', 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 418, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', 'none', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1131, 255, 'tl_article', 384, 1560783378, 'module', 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 419, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', 'none', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1132, 255, 'tl_article', 512, 1560783579, 'module', 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 420, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', 'none', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1133, 255, 'tl_article', 640, 1560783641, 'module', 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 421, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', 'none', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1134, 255, 'tl_article', 448, 1560843081, 'module', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 422, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', 'none', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1135, 197, 'tl_article', 64, 1641290342, 'module', 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 423, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', '', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1137, 156, 'tl_article', 192, 1644934174, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:10:\"Referenzen\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"510\";i:1;s:3:\"200\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a323a7b693a303b733a31363a22b92fb24e467611e9a91c408d5c22fa41223b693a313b733a31363a22c09740c7467611e9a91c408d5c22fa41223b7d, 0x613a323a7b693a303b733a31363a22b92fb24e467611e9a91c408d5c22fa41223b693a313b733a31363a22c09740c7467611e9a91c408d5c22fa41223b7d, '', 2, 0, 0, 'custom', '', 'gallery_default_references', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); - -INSERT INTO `tl_faq` (`id`, `pid`, `sorting`, `tstamp`, `question`, `alias`, `author`, `answer`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `noComments`, `published`, `description`, `robots`, `pageTitle`) VALUES(8, 5, 32, 1511950486, 'Do your users have any questions?', '', 1, '

To display the FAQ on your website you can choose from three modules in the Contao back-end. Those offer the possibility to configure the output of your frequently asked questions in various ways.

\n
    \n
  • FAQ - List
  • \n
  • FAQ - Reader
  • \n
  • FAQ - Page
  • \n
\n

The FAQ - List is a frontend module that lets you[nbsp]list your questions and answers from chosen categories. Only the title question and a link to the FAQ - Reader (which needs to be placed on a secondary site) are[nbsp]displayed. It might be a good option to choose this ouput if you have a longer list of questions.

\n

Another way to display information to the visitors is the FAQ - Page module. This module lists all your questions and answers on one page. Linking to another site is not necessary and therefore it is recommanded if you want to show just a few questions and keep all the information on one site. With a little additional code in the mod_faqpage.html5 template you can easily integrate a[nbsp]javascript[nbsp]accordion which will improve the usability of your FAQ greatly for your visitors.

', '', '', 0x00000000000000000000000000000000, '', '', '', '', '', '', '', '', '', NULL, '', '1', NULL, '', ''); -INSERT INTO `tl_faq` (`id`, `pid`, `sorting`, `tstamp`, `question`, `alias`, `author`, `answer`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `noComments`, `published`, `description`, `robots`, `pageTitle`) VALUES(9, 5, 64, 1511950487, 'You have to answer the same over and over?', '', 1, '

Every single question and answer allows you to display a title question and a text (of course). You can also add an image and/or an enclosure next to your FAQ item. The predefined fields allow you to set an author of the item and lets you choose if you want to publish the item right away or keep it unpublished for the time being.

', '', '', 0x00000000000000000000000000000000, '', '', '', '', '', '', '', '', '', NULL, '', '1', NULL, '', ''); -INSERT INTO `tl_faq` (`id`, `pid`, `sorting`, `tstamp`, `question`, `alias`, `author`, `answer`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `noComments`, `published`, `description`, `robots`, `pageTitle`) VALUES(10, 5, 256, 1511950488, 'You want to hear the opinions of the website members?', '', 1, '

The FAQ also enable you to manage comments. With the tick on the checkbox \"Enable comments\"in your FAQ category configuration you allow your visitors to leave comments on your FAQs. Different options are integrated to fit your needs regarding the workflow of submitted comments.

\n
    \n
  • Moderate comments
  • \n
  • Get notified when a comment is posted (you can notify the System administrator, the author of the FAQ or both)
  • \n
  • Set the ordering and the \"Comments per page\", which automatically creates a pagination
  • \n
  • Allow your visitors to use BBCode within the comment field
  • \n
', '', '', 0x00000000000000000000000000000000, '', '', '', '', '', '', '', '', '', NULL, '', '1', NULL, '', ''); - -INSERT INTO `tl_faq_category` (`id`, `tstamp`, `title`, `headline`, `jumpTo`, `allowComments`, `notify`, `sortOrder`, `perPage`, `moderate`, `bbcode`, `requireLogin`, `disableCaptcha`) VALUES(5, 1539344484, 'Odd / FAQ', 'FAQ', 137, '1', 'notify_admin', 'ascending', 0, '', '', '', ''); - -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(718, NULL, 1538489608, 0x5556381bc64d11e88ff2408d5c22fa41, 'folder', 'files/odd', '', 'c62b1ec4b5c5a4e2a186bce08cb64b48', '1', 'odd', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(720, 0x5556381bc64d11e88ff2408d5c22fa41, 1538489691, 0x86ee99abc64d11e88ff2408d5c22fa41, 'folder', 'files/odd/img', '', '079c14b1399536cf8514e64cb93453ed', '1', 'img', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(755, 0x86ee99abc64d11e88ff2408d5c22fa41, 1552579599, 0x267f1df5467311e9a91c408d5c22fa41, 'folder', 'files/odd/img/verlassene-orte-meissen', '', '5652813e47ef238e3e5e167a24da3428', '1', 'verlassene-orte-meissen', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(796, 0x267f1df5467311e9a91c408d5c22fa41, 1553878188, 0xae24b6cc467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/keramikfabrik.jpg', 'jpg', 'b477fb4521e9dea4d4ccf8cddc88bdb5', '1', 'keramikfabrik.jpg', 0.00048828125, 0.243401759531, 0.99951171875, 0.593108504399, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(797, 0x267f1df5467311e9a91c408d5c22fa41, 1552658157, 0xb0ad636c467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/zuckerwarenfabrik-elbdom.jpg', 'jpg', '01b19ac855e4dc1edf18a048cfaa8100', '1', 'zuckerwarenfabrik-elbdom.jpg', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(798, 0x267f1df5467311e9a91c408d5c22fa41, 1552658153, 0xb0b560c5467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/wohnhaus-rosengasse-1.jpg', 'jpg', '6b30092e92ea58c487f633022bdafa7a', '1', 'wohnhaus-rosengasse-1.jpg', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(799, 0x267f1df5467311e9a91c408d5c22fa41, 1552658156, 0xb2d63e05467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/wohnhaus-rosengasse-3.jpg', 'jpg', '33416ee1cda94de335dba34bfe8c34ee', '1', 'wohnhaus-rosengasse-3.jpg', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(800, 0x267f1df5467311e9a91c408d5c22fa41, 1552658152, 0xb525bf9c467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/wohnhaus-goernische-gasse.jpg', 'jpg', '9e9abd17d1a49053d11924edcebccf1e', '1', 'wohnhaus-goernische-gasse.jpg', 0, 0.139205662603, 1, 0.181281950452, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(801, 0x267f1df5467311e9a91c408d5c22fa41, 1552658155, 0xb81fbc97467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/wohnhaus-rosengasse-2.jpg', 'jpg', 'ef1a07b23859899a734e925d7a2c9700', '1', 'wohnhaus-rosengasse-2.jpg', 0, 0.246356696738, 1, 0.19465648855, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(802, 0x267f1df5467311e9a91c408d5c22fa41, 1644934347, 0xb92fb24e467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/e-werk-brauhausstrasse-1.jpg', 'jpg', '61cdb7bef90f13a7136a8a4b25dc905f', '1', 'e-werk-brauhausstrasse-1.jpg', 0.00732421875, 0.0791556728232, 0.99267578125, 0.529683377309, 0x613a313a7b733a323a226465223b613a353a7b733a353a227469746c65223b733a383a225265666572656e7a223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a32323a22452d5765726b20427261756861757373747261c39f65223b733a373a226c6963656e7365223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(804, 0x267f1df5467311e9a91c408d5c22fa41, 1644934343, 0xc09740c7467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/alte-ziegelei-1.jpg', 'jpg', 'a247b7b1e54abc0c5046f6d78607f185', '1', 'alte-ziegelei-1.jpg', 0.01025390625, 0.212609970674, 0.98974609375, 0.558651026393, 0x613a313a7b733a323a226465223b613a353a7b733a353a227469746c65223b733a383a225265666572656e7a223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a31333a22416c7465205a696567656c6569223b733a373a226c6963656e7365223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(805, 0x267f1df5467311e9a91c408d5c22fa41, 1552658147, 0xc416cb81467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/jahnhalle.jpg', 'jpg', '8f7955f5b457654b74a15e88654f8728', '1', 'jahnhalle.jpg', 0, 0.148093841642, 1, 0.646627565982, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(806, 0x267f1df5467311e9a91c408d5c22fa41, 1552658145, 0xc433b88f467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/alte-ziegelei-3.jpg', 'jpg', '40936257485cd57168f9fa455e933d5a', '1', 'alte-ziegelei-3.jpg', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(807, 0x267f1df5467311e9a91c408d5c22fa41, 1552658150, 0xc6eaaf6d467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/rittergut-coelln.jpg', 'jpg', 'f630378402f55ff1df4e8bed31098d01', '1', 'rittergut-coelln.jpg', 0, 0.283724340176, 1, 0.401759530792, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(809, 0x267f1df5467311e9a91c408d5c22fa41, 1553878145, 0xc942253a467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/hamburger-hof.jpg', 'jpg', '3f64cf746174ec835dc2d5670811ffaa', '1', 'hamburger-hof.jpg', 0.00341796875, 0.110520722635, 0.99658203125, 0.672688629118, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(810, 0x267f1df5467311e9a91c408d5c22fa41, 1553878163, 0xcbc4a14c467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/kaserne-bohnitzsch-1.jpg', 'jpg', '6ca91cbb5c7f27795f171a1d122290d4', '1', 'kaserne-bohnitzsch-1.jpg', 0.0078125, 0.183284457478, 0.9921875, 0.609970674487, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(811, 0x267f1df5467311e9a91c408d5c22fa41, 1553878174, 0xccb24364467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/kaserne-bohnitzsch-2.jpg', 'jpg', '8839c2910a3f63f8607f94705aa10c4b', '1', 'kaserne-bohnitzsch-2.jpg', 0, 0.127565982405, 1, 0.681085043988, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(812, 0x267f1df5467311e9a91c408d5c22fa41, 1553878204, 0xce7c80c2467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/landkrankenhaus.jpg', 'jpg', 'a3b13f1be8e11c70c86253fa827f299a', '1', 'landkrankenhaus.jpg', 0.0048828125, 0.280575539568, 0.9951171875, 0.531066056246, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(813, 0x267f1df5467311e9a91c408d5c22fa41, 1552658147, 0xd285349b467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/herrenhaus-dresdner-strasse.jpg', 'jpg', 'a0e798cdd651953ae3f129724fcb3d7d', '1', 'herrenhaus-dresdner-strasse.jpg', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(815, 0x86ee99abc64d11e88ff2408d5c22fa41, 1552657625, 0xc96d0cf7472811e9a91c408d5c22fa41, 'file', 'files/odd/img/ODD_Logo.png', 'png', '0dd572b40f1e9c2843715f9d1dcc677e', '1', 'ODD_Logo.png', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a33333a224f4444204c6f676f202d204578706c6f72696e6720436f6e74616f205468656d65223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(820, 0x5556381bc64d11e88ff2408d5c22fa41, 1553271254, 0x89152b404cbd11e9a91c408d5c22fa41, 'folder', 'files/odd/scss', '', 'af3cb9077c044201ad94991c70c728d1', '1', 'scss', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(821, 0x89152b404cbd11e9a91c408d5c22fa41, 1575380404, 0x89152b384cbd11e9a91c408d5c22fa41, 'file', 'files/odd/scss/_custom_colors.scss', 'scss', 'faa3e283a513251c3af4f09bf6d5d961', '1', '_custom_colors.scss', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(822, 0x89152b404cbd11e9a91c408d5c22fa41, 1553271254, 0x89152b324cbd11e9a91c408d5c22fa41, 'file', 'files/odd/scss/_custom_variables.scss', 'scss', '4791bf84f66d4b442eeaeac9bb8a8c72', '1', '_custom_variables.scss', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(823, 0x89152b404cbd11e9a91c408d5c22fa41, 1575380926, 0x89152b2b4cbd11e9a91c408d5c22fa41, 'file', 'files/odd/scss/custom.scss', 'scss', '9cbb457cbe5c21e7a8a0f3992523afdb', '1', 'custom.scss', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(854, 0x267f1df5467311e9a91c408d5c22fa41, 1555065120, 0x34b541155d0e11e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/IMG_3790_1_HDR_tonemapped.jpg', 'jpg', 'd98ebb0c9aad9dd1bc4be9bfdc739a66', '1', 'IMG_3790_1_HDR_tonemapped.jpg', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(855, 0x267f1df5467311e9a91c408d5c22fa41, 1555065120, 0x34b5410d5d0e11e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/PICT0004_03_8bit.jpg', 'jpg', '6c55203d749a9ba94106930d66f9044b', '1', 'PICT0004_03_8bit.jpg', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(856, 0x267f1df5467311e9a91c408d5c22fa41, 1555065120, 0x34b541065d0e11e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/e-werk-brauhausstrasse-2.jpg', 'jpg', 'e0d8a92393c972e5cd168d5a78dd67b7', '1', 'e-werk-brauhausstrasse-2.jpg', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(857, 0x86ee99abc64d11e88ff2408d5c22fa41, 1555316209, 0xd163d7285f5611e989ece0d55edd9ad9, 'file', 'files/odd/img/favicon.ico', 'ico', '75ab0f0a098e0a63c5a68c9cb577b9e1', '1', 'favicon.ico', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(858, NULL, 1638524413, 0x03978b0f541d11ec8ee0e0d55e59bff3, 'folder', 'files/social-feed', '', '4d2d253fd689642108b33d6deb15f113', '1', 'social-feed', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(859, 0x03978b0f541d11ec8ee0e0d55e59bff3, 1638524413, 0x03978b04541d11ec8ee0e0d55e59bff3, 'folder', 'files/social-feed/70570732', '', 'a6fbae4602a396d3aaa1b982987550d6', '1', '70570732', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(860, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524413, 0x03978afc541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6868857032481538048.jpg', 'jpg', '28d81d1e1217d5fc79781bb9becc742a', '1', '6868857032481538048.jpg', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(861, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524413, 0x03978af5541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6863780628970684416.jpg', 'jpg', '9a269aaa9d7811b160d070621ebb40d3', '1', '6863780628970684416.jpg', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(862, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524414, 0x03978aeb541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6859777035833786368.jpg', 'jpg', '0f88e5d0ea5396e6b111e134321e5033', '1', '6859777035833786368.jpg', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(863, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524414, 0x03978ae4541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6821723322980589568.jpg', 'jpg', '6cc89d2eb80b2e58a96c8a8919f6bc3b', '1', '6821723322980589568.jpg', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(864, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524414, 0x03978adc541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6814107593779269633.jpg', 'jpg', '8ed28675f33d2f3fa6ee96979e532dc5', '1', '6814107593779269633.jpg', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(865, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524415, 0x03978ad4541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6810600668026454016.jpg', 'jpg', '11df1eb0f5b8469080bbaa6a8e4a8841', '1', '6810600668026454016.jpg', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(866, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524415, 0x03978ac8541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6806161831481159680.jpg', 'jpg', 'b4fad794ccfcf56f75617f9614f7c243', '1', '6806161831481159680.jpg', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(867, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524420, 0x03978a95541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6802949577843453952.jpg', 'jpg', '76ea90aba86bbf728e9a407154bbbc11', '1', '6802949577843453952.jpg', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(868, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524420, 0x08043c64541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6800429967206359041.jpg', 'jpg', 'ffeafff60a8a39c0ae7f6ebe37e4baa0', '1', '6800429967206359041.jpg', 0, 0, 0, 0, NULL, NULL); - -INSERT INTO `tl_form` (`id`, `tstamp`, `title`, `alias`, `jumpTo`, `sendViaEmail`, `recipient`, `subject`, `format`, `skipEmpty`, `storeValues`, `targetTable`, `customTpl`, `method`, `novalidate`, `attributes`, `formID`, `allowTags`, `advancedCss`, `mailerTransport`) VALUES(6, 1539346644, 'Odd / Beispielformular', 'mate-beispielformular', 135, '1', 'info@example.de', 'Formular-Anfrage mate.contao-themes.net', 'raw', '', '', '', 'form_wrapper', 'POST', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', ''); -INSERT INTO `tl_form` (`id`, `tstamp`, `title`, `alias`, `jumpTo`, `sendViaEmail`, `recipient`, `subject`, `format`, `skipEmpty`, `storeValues`, `targetTable`, `customTpl`, `method`, `novalidate`, `attributes`, `formID`, `allowTags`, `advancedCss`, `mailerTransport`) VALUES(8, 1539346653, 'Odd / Kontaktformular', 'mate-kontaktformular', 135, '1', 'info@example.de', 'Anfrage Kontaktformular bei Mate Theme', 'raw', '', '', '', 'form_wrapper', 'POST', '', 'a:2:{i:0;s:0:\"\";i:1;s:4:\"test\";}', '', '', '', ''); - -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(22, 6, 128, 1511533531, 'text', 'Name', 'name', NULL, NULL, NULL, '1', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(23, 6, 64, 1511535789, 'text', 'Vorname', 'vorname', NULL, NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(27, 6, 640, 1511533525, 'text', 'E-Mail', 'email', NULL, NULL, NULL, '', 'email', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(28, 6, 768, 1511533391, 'text', 'Telefon', 'telefon', NULL, NULL, NULL, '', 'phone', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(29, 6, 896, 1511533449, 'textarea', 'Ihre Nachricht', 'nachricht', NULL, NULL, NULL, '1', '', '', 0, 0, 'a:2:{i:0;s:1:\"4\";i:1;s:2:\"40\";}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(30, 6, 1024, 1511533458, 'submit', '', '', NULL, NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', 'Absenden', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(31, 6, 876, 1511786014, 'checkbox', 'Checkbox-Menü', 'kontaktart', NULL, NULL, 0x613a333a7b693a303b613a323a7b733a353a2276616c7565223b733a383a226175737761686c31223b733a353a226c6162656c223b733a393a224175737761686c2031223b7d693a313b613a323a7b733a353a2276616c7565223b733a383a226175737761686c32223b733a353a226c6162656c223b733a393a224175737761686c2032223b7d693a323b613a323a7b733a353a2276616c7565223b733a383a226175737761686c33223b733a353a226c6162656c223b733a393a224175737761686c2033223b7d7d, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(32, 6, 864, 1511534002, 'select', 'Wie sind Sie auf uns aufmerksam geworden?', 'wie-gefunden', NULL, NULL, 0x613a363a7b693a303b613a323a7b733a353a2276616c7565223b733a383a22696e7465726e6574223b733a353a226c6162656c223b733a383a22496e7465726e6574223b7d693a313b613a323a7b733a353a2276616c7565223b733a373a227a656974756e67223b733a353a226c6162656c223b733a373a225a656974756e67223b7d693a323b613a323a7b733a353a2276616c7565223b733a31313a22706572736f656e6c696368223b733a353a226c6162656c223b733a32333a2250657273c3b66e6c6963686520456d706665686c756e67223b7d693a333b613a323a7b733a353a2276616c7565223b733a353a22726164696f223b733a353a226c6162656c223b733a353a22526164696f223b7d693a343b613a323a7b733a353a2276616c7565223b733a323a227476223b733a353a226c6162656c223b733a323a225456223b7d693a353b613a323a7b733a353a2276616c7565223b733a393a22736f6e737469676573223b733a353a226c6162656c223b733a393a22536f6e737469676573223b7d7d, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(33, 6, 888, 1511536334, 'radio', 'Radio-Button-Menü', 'radio-button', NULL, NULL, 0x613a343a7b693a303b613a323a7b733a353a2276616c7565223b733a353a227765727431223b733a353a226c6162656c223b733a363a22576572742031223b7d693a313b613a323a7b733a353a2276616c7565223b733a353a227765727432223b733a353a226c6162656c223b733a363a22576572742032223b7d693a323b613a323a7b733a353a2276616c7565223b733a353a227765727433223b733a353a226c6162656c223b733a363a22576572742033223b7d693a333b613a323a7b733a353a2276616c7565223b733a353a227765727434223b733a353a226c6162656c223b733a363a22576572742034223b7d7d, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(34, 6, 892, 1645102642, 'upload', 'Dateiupload', 'dateiupload', NULL, NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '1', NULL, '', '1', '', '', '', 0, 0, 'form_upload_odd', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(47, 6, 816, 1511781024, 'text', 'Datumsauswahl', 'datepicker', NULL, NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', 'datepicker', '', '', 0, 0, '', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(48, 6, 840, 1511781167, 'text', 'Zeitauswahl', 'timepicker', NULL, NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', 'timepicker', '', '', 0, 0, '', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(50, 8, 128, 1555069694, 'text', 'Name', 'name', NULL, NULL, NULL, '1', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(52, 8, 384, 1512724283, 'text', 'E-Mail', 'email', NULL, NULL, NULL, '1', 'email', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(53, 8, 512, 1512724310, 'textarea', 'Ihre Nachricht', 'nachricht', NULL, NULL, NULL, '1', '', '', 0, 0, 'a:2:{i:0;s:1:\"4\";i:1;s:2:\"40\";}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(54, 8, 640, 1512724321, 'submit', '', '', NULL, NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', '', NULL, '', '', '', '', '', 0, 0, '', 'Absenden', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(57, 6, 960, 1525257445, 'rocksolid_antispam', 'Antispam Sicherheitsfrage', '', NULL, NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(58, 8, 576, 1555069708, 'captcha', '', '', NULL, NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(60, 8, 768, 1555069889, 'explanation', '', '', '

[nbsp]

\n

* Pflichtfelder

', NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); - -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(16, 17, 1555080617, 'Headerbild', '', '', '', 1920, 400, 'crop', 0, '1', '', ''); -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(17, 17, 1560847552, 'Headerbild mit Schräge', '', '1x, 1.5x, 2x', '', 1920, 650, 'crop', 0, '1', '', ''); -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(18, 17, 1552657088, 'Slider', '', '', '', 1920, 750, 'crop', 0, '1', '', ''); -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(19, 17, 1525783920, 'Teaserboxen', '', '1x, 1.5x, 2x', '', 350, 200, 'crop', 0, '1', '', ''); -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(22, 17, 1528372682, 'Team', '', '1x, 1.5x, 2x', '', 350, 250, 'crop', 100, '1', '', ''); -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(23, 17, 1539099645, 'News / Listenansicht', '', '', '', 540, 350, 'crop', 100, '1', '', ''); -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(24, 17, 1560847649, 'Slider mit Schräge', '', '', '', 1920, 900, 'crop', 0, '1', '', ''); -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(25, 17, 1552657717, 'Logo', '', '1x, 1.5x, 2x', '', NULL, 90, 'box', NULL, '1', '', ''); -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(26, 17, 1572884258, 'Maklermodul / Listenansicht', '', '', '', 357, 200, 'crop', 0, '', '', ''); - -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(6, 16, 128, 1555080029, '(max-width: 991px)', '1x, 1.5x, 2x', '', 991, 350, 'crop', NULL, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(7, 17, 128, 1555080183, '(max-width: 767px)', '1x, 1.5x, 2x', '', 767, 450, 'crop', NULL, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(8, 18, 128, 1525699627, '(max-width:767px)', '1x, 1.5x, 2x', '', 767, 500, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(9, 18, 256, 1525787411, '(max-width:1024px)', '1x, 1.5x, 2x', '', 1024, 500, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(10, 18, 384, 1525856669, '(max-width:1300px)', '1x, 1.5x, 2x', '', 1300, 550, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(13, 22, 128, 1528372677, '(max-width:1199px)', '1x, 1.5x, 2x', '', 300, 200, 'crop', 100, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(14, 22, 64, 1528372754, '(max-width:991px)', '1x, 1.5x, 2x', '', 420, 300, 'crop', 100, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(15, 22, 32, 1528372807, '(max-width:767px)', '1x, 1.5x, 2x', '', 510, 350, 'crop', 100, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(16, 22, 16, 1528372855, '(max-width:400px)', '1x, 1.5x, 2x', '', 370, 255, 'crop', 100, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(20, 24, 128, 1552659511, '(max-width: 1450px)', '1x, 1.5x, 2x', '', 1455, 800, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(21, 24, 64, 1552659506, '(max-width: 1150px)', '1x, 1.5x, 2x', '', 1150, 800, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(22, 24, 32, 1552659500, '(max-width:992px)', '1x, 1.5x, 2x', '', 992, 800, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(23, 24, 16, 1552660075, '(max-width: 767px)', '1x, 1.5x, 2x', '', 767, 500, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(25, 19, 128, 1552663259, '(max-width: 767px)', '1x, 1.5x, 2x', '', 510, 300, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(27, 17, 256, 1555079599, '(max-width: 991px)', '1x, 1.5x, 2x', '', 991, 500, 'crop', NULL, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(28, 17, 64, 1555079881, '(max-width: 450px)', '1x, 1.5x, 2x', '', 450, 400, 'crop', NULL, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(29, 16, 64, 1555080549, '(max-width: 450px)', '1x, 1.5x, 2x', '', 450, 250, 'crop', NULL, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(30, 16, 256, 1555080674, '(max-width: 1200px)', '1x, 1.5x, 2x', '', 1200, 350, 'crop', NULL, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(31, 24, 8, 1560847732, '(max-width: 450px)', '1x, 1.5x, 2x', '', 450, 295, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(32, 18, 64, 1560847802, '(max-width: 450px)', '1x, 1.5x, 2x', '', 450, 295, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(33, 19, 64, 1560847852, '(max-width: 450px)', '1x, 1.5x, 2x', '', 380, 225, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(34, 26, 128, 1572884653, '(max-width:991px)', '', '', 417, 233, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(35, 26, 64, 1572884651, '(max-width:767px)', '', '', 511, 286, 'crop', 0, ''); - -INSERT INTO `tl_layout` (`id`, `pid`, `tstamp`, `name`, `rows`, `headerHeight`, `footerHeight`, `cols`, `widthLeft`, `widthRight`, `sections`, `framework`, `stylesheet`, `external`, `loadingOrder`, `combineScripts`, `modules`, `template`, `viewport`, `titleTag`, `cssClass`, `onload`, `head`, `addJQuery`, `jquery`, `addMooTools`, `mootools`, `analytics`, `scripts`, `script`, `static`, `width`, `align`, `externalJs`, `minifyMarkup`, `defaultImageDensities`, `lightboxSize`, `calendarfeeds`, `newsfeeds`) VALUES(55, 17, 1643298800, 'Einspaltiges Layout / Schräger Header', '3rw', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '1cl', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '', 0x613a313a7b693a303b613a343a7b733a353a227469746c65223b733a303a22223b733a323a226964223b733a303a22223b733a383a2274656d706c617465223b733a31333a22626c6f636b5f73656374696f6e223b733a383a22706f736974696f6e223b733a333a22746f70223b7d7d, '', NULL, NULL, 'external_first', '1', 0x613a363a7b693a303b613a333a7b733a333a226d6f64223b733a333a22333832223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a313b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a323b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a343a226d61696e223b733a363a22656e61626c65223b733a313a2231223b7d693a333b613a333a7b733a333a226d6f64223b733a333a22333932223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a343b613a333a7b733a333a226d6f64223b733a333a22333732223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a353b613a333a7b733a333a226d6f64223b733a333a22333731223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d7d, 'fe_page_odd', 'width=device-width, initial-scale=1, shrink-to-fit=no', '', '', '', NULL, '1', 'a:2:{i:0;s:11:\"j_accordion\";i:1;s:10:\"j_colorbox\";}', '', NULL, NULL, 'a:1:{i:0;s:9:\"js_slider\";}', NULL, '', '', 'center', NULL, '1', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', NULL, NULL); -INSERT INTO `tl_layout` (`id`, `pid`, `tstamp`, `name`, `rows`, `headerHeight`, `footerHeight`, `cols`, `widthLeft`, `widthRight`, `sections`, `framework`, `stylesheet`, `external`, `loadingOrder`, `combineScripts`, `modules`, `template`, `viewport`, `titleTag`, `cssClass`, `onload`, `head`, `addJQuery`, `jquery`, `addMooTools`, `mootools`, `analytics`, `scripts`, `script`, `static`, `width`, `align`, `externalJs`, `minifyMarkup`, `defaultImageDensities`, `lightboxSize`, `calendarfeeds`, `newsfeeds`) VALUES(56, 17, 1644832868, 'Zweispaltiges Layout / Linke Spalte / Schräger Header', '3rw', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '2cll', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '', 0x613a313a7b693a303b613a343a7b733a353a227469746c65223b733a303a22223b733a323a226964223b733a303a22223b733a383a2274656d706c617465223b733a31333a22626c6f636b5f73656374696f6e223b733a383a22706f736974696f6e223b733a333a22746f70223b7d7d, '', NULL, NULL, 'external_first', '1', 0x613a383a7b693a303b613a333a7b733a333a226d6f64223b733a333a22333832223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a313b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a323b613a333a7b733a333a226d6f64223b733a333a22333834223b733a333a22636f6c223b733a343a226c656674223b733a363a22656e61626c65223b733a313a2231223b7d693a333b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a343a226c656674223b733a363a22656e61626c65223b733a313a2231223b7d693a343b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a343a226d61696e223b733a363a22656e61626c65223b733a313a2231223b7d693a353b613a333a7b733a333a226d6f64223b733a333a22333932223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a363b613a333a7b733a333a226d6f64223b733a333a22333732223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a373b613a333a7b733a333a226d6f64223b733a333a22333731223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d7d, 'fe_page_odd_left', 'width=device-width, initial-scale=1, shrink-to-fit=no', '', 'left-col-layout', '', NULL, '1', 'a:2:{i:0;s:11:\"j_accordion\";i:1;s:10:\"j_colorbox\";}', '', NULL, NULL, 'a:1:{i:0;s:9:\"js_slider\";}', NULL, '', '', 'center', NULL, '1', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', NULL, NULL); -INSERT INTO `tl_layout` (`id`, `pid`, `tstamp`, `name`, `rows`, `headerHeight`, `footerHeight`, `cols`, `widthLeft`, `widthRight`, `sections`, `framework`, `stylesheet`, `external`, `loadingOrder`, `combineScripts`, `modules`, `template`, `viewport`, `titleTag`, `cssClass`, `onload`, `head`, `addJQuery`, `jquery`, `addMooTools`, `mootools`, `analytics`, `scripts`, `script`, `static`, `width`, `align`, `externalJs`, `minifyMarkup`, `defaultImageDensities`, `lightboxSize`, `calendarfeeds`, `newsfeeds`) VALUES(57, 17, 1644833953, 'Zweispaltiges Layout / Rechte Spalte / Schräger Header', '3rw', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '2clr', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 0x613a313a7b693a303b613a343a7b733a353a227469746c65223b733a303a22223b733a323a226964223b733a303a22223b733a383a2274656d706c617465223b733a31333a22626c6f636b5f73656374696f6e223b733a383a22706f736974696f6e223b733a333a22746f70223b7d7d, '', NULL, NULL, 'external_first', '1', 0x613a383a7b693a303b613a333a7b733a333a226d6f64223b733a333a22333832223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a313b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a323b613a333a7b733a333a226d6f64223b733a333a22333834223b733a333a22636f6c223b733a353a227269676874223b733a363a22656e61626c65223b733a313a2231223b7d693a333b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a353a227269676874223b733a363a22656e61626c65223b733a313a2231223b7d693a343b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a343a226d61696e223b733a363a22656e61626c65223b733a313a2231223b7d693a353b613a333a7b733a333a226d6f64223b733a333a22333932223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a363b613a333a7b733a333a226d6f64223b733a333a22333732223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a373b613a333a7b733a333a226d6f64223b733a333a22333731223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d7d, 'fe_page_odd_right', 'width=device-width, initial-scale=1, shrink-to-fit=no', '', 'left-col-layout', '', NULL, '1', 'a:2:{i:0;s:11:\"j_accordion\";i:1;s:10:\"j_colorbox\";}', '', NULL, NULL, 'a:1:{i:0;s:9:\"js_slider\";}', NULL, '', '', 'center', NULL, '1', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', NULL, NULL); -INSERT INTO `tl_layout` (`id`, `pid`, `tstamp`, `name`, `rows`, `headerHeight`, `footerHeight`, `cols`, `widthLeft`, `widthRight`, `sections`, `framework`, `stylesheet`, `external`, `loadingOrder`, `combineScripts`, `modules`, `template`, `viewport`, `titleTag`, `cssClass`, `onload`, `head`, `addJQuery`, `jquery`, `addMooTools`, `mootools`, `analytics`, `scripts`, `script`, `static`, `width`, `align`, `externalJs`, `minifyMarkup`, `defaultImageDensities`, `lightboxSize`, `calendarfeeds`, `newsfeeds`) VALUES(58, 17, 1644834189, 'Dreispaltiges Layout / Linke und rechte Spalte / Schräger Header', '3rw', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '3cl', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 0x613a313a7b693a303b613a343a7b733a353a227469746c65223b733a303a22223b733a323a226964223b733a303a22223b733a383a2274656d706c617465223b733a31333a22626c6f636b5f73656374696f6e223b733a383a22706f736974696f6e223b733a333a22746f70223b7d7d, '', NULL, NULL, 'external_first', '1', 0x613a393a7b693a303b613a333a7b733a333a226d6f64223b733a333a22333832223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a313b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a323b613a333a7b733a333a226d6f64223b733a333a22333834223b733a333a22636f6c223b733a343a226c656674223b733a363a22656e61626c65223b733a313a2231223b7d693a333b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a343a226c656674223b733a363a22656e61626c65223b733a313a2231223b7d693a343b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a353a227269676874223b733a363a22656e61626c65223b733a313a2231223b7d693a353b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a343a226d61696e223b733a363a22656e61626c65223b733a313a2231223b7d693a363b613a333a7b733a333a226d6f64223b733a333a22333932223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a373b613a333a7b733a333a226d6f64223b733a333a22333732223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a383b613a333a7b733a333a226d6f64223b733a333a22333731223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d7d, 'fe_page_odd_three_columns', 'width=device-width, initial-scale=1, shrink-to-fit=no', '', 'left-right-col-layout', '', NULL, '1', 'a:2:{i:0;s:11:\"j_accordion\";i:1;s:10:\"j_colorbox\";}', '', NULL, NULL, 'a:1:{i:0;s:9:\"js_slider\";}', NULL, '', '', 'center', NULL, '1', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', NULL, NULL); -INSERT INTO `tl_layout` (`id`, `pid`, `tstamp`, `name`, `rows`, `headerHeight`, `footerHeight`, `cols`, `widthLeft`, `widthRight`, `sections`, `framework`, `stylesheet`, `external`, `loadingOrder`, `combineScripts`, `modules`, `template`, `viewport`, `titleTag`, `cssClass`, `onload`, `head`, `addJQuery`, `jquery`, `addMooTools`, `mootools`, `analytics`, `scripts`, `script`, `static`, `width`, `align`, `externalJs`, `minifyMarkup`, `defaultImageDensities`, `lightboxSize`, `calendarfeeds`, `newsfeeds`) VALUES(59, 17, 1643298853, 'Einspaltiges Layout / Gerader Header', '3rw', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '1cl', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '', 0x613a313a7b693a303b613a343a7b733a353a227469746c65223b733a303a22223b733a323a226964223b733a303a22223b733a383a2274656d706c617465223b733a31333a22626c6f636b5f73656374696f6e223b733a383a22706f736974696f6e223b733a333a22746f70223b7d7d, '', NULL, NULL, 'external_first', '1', 0x613a363a7b693a303b613a333a7b733a333a226d6f64223b733a333a22343137223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a313b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a323b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a343a226d61696e223b733a363a22656e61626c65223b733a313a2231223b7d693a333b613a333a7b733a333a226d6f64223b733a333a22333932223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a343b613a333a7b733a333a226d6f64223b733a333a22333732223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a353b613a333a7b733a333a226d6f64223b733a333a22333731223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d7d, 'fe_page_odd', 'width=device-width, initial-scale=1, shrink-to-fit=no', '', '', '', NULL, '1', 'a:2:{i:0;s:11:\"j_accordion\";i:1;s:10:\"j_colorbox\";}', '', NULL, NULL, 'a:1:{i:0;s:9:\"js_slider\";}', NULL, '', '', 'center', NULL, '1', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', NULL, NULL); - -INSERT INTO `tl_member` (`id`, `tstamp`, `firstname`, `lastname`, `dateOfBirth`, `gender`, `company`, `street`, `postal`, `city`, `state`, `country`, `phone`, `mobile`, `fax`, `email`, `website`, `language`, `groups`, `login`, `username`, `password`, `assignDir`, `homeDir`, `disable`, `start`, `stop`, `dateAdded`, `lastLogin`, `currentLogin`, `locked`, `session`, `useTwoFactor`, `secret`, `trustedTokenVersion`, `backupCodes`, `loginAttempts`, `newsletter`) VALUES(1, 1259754224, 'John', 'Smith', '238201200', 'male', '', '', '', '', '', '', '', '', '', 'j.smith@example.com', '', 'en', 0x613a313a7b693a303b733a313a2232223b7d, '1', 'j.smith', '$2y$10$r//Ke.SkjhB5W8PLFKMmweY5Bv2d4CbSm3f3sH8Q4UMp8QknQPe0y', '', 0x00000000000000000000000000000000, '', '', '', 1259754224, 1539337506, 1539337760, 0, 0x613a363a7b733a373a2272656665726572223b613a323a7b733a343a226c617374223b733a31373a226d656d626572732d617265612e68746d6c223b733a373a2263757272656e74223b733a393a22757365722e68746d6c223b7d733a31303a22636170746368615f3230223b613a333a7b733a333a2273756d223b693a383b733a333a226b6579223b733a33333a22636562373937343262653137306630303832363537373732373734376261306437223b733a343a2274696d65223b693a313439373134373934303b7d733a31353a22636170746368615f63617074636861223b613a333a7b733a333a2273756d223b693a31313b733a333a226b6579223b733a33333a22633431623637396665326338366161333063316130316230613034336234366237223b733a343a2274696d65223b693a313439373134373934303b7d733a32313a22636170746368615f6c6f73745f70617373776f7264223b613a333a7b733a333a2273756d223b693a363b733a333a226b6579223b733a33333a22636239353765633334376531353338336466313963636562623232346465386133223b733a343a2274696d65223b693a313531313533303338333b7d733a32313a22726f636b736f6c69645f616e74697370616d5f3335223b613a333a7b733a353a226e616d6573223b613a333a7b693a303b733a373a22656d61696c2d32223b693a313b733a333a2275726c223b693a323b733a32323a225f4b704b4b622d4c456d49616f463971443064387851223b7d733a363a2276616c756573223b613a333a7b693a303b733a303a22223b693a313b733a303a22223b693a323b733a32323a2251336a376a50586f6b6b5434466e30686a455a796651223b7d733a343a2274696d65223b693a313532343930393935363b7d733a32313a22726f636b736f6c69645f616e74697370616d5f3535223b613a333a7b733a353a226e616d6573223b613a333a7b693a303b733a373a22656d61696c2d32223b693a313b733a333a2275726c223b693a323b733a32323a22525a584d38423675684b6f436575556d314c45437167223b7d733a363a2276616c756573223b613a333a7b693a303b733a303a22223b693a313b733a303a22223b693a323b733a32323a222d65696d7a627975674d4d487647366635454f4f6d51223b7d733a343a2274696d65223b693a313532343931303738353b7d7d, '', NULL, 0, NULL, 0, ''); -INSERT INTO `tl_member` (`id`, `tstamp`, `firstname`, `lastname`, `dateOfBirth`, `gender`, `company`, `street`, `postal`, `city`, `state`, `country`, `phone`, `mobile`, `fax`, `email`, `website`, `language`, `groups`, `login`, `username`, `password`, `assignDir`, `homeDir`, `disable`, `start`, `stop`, `dateAdded`, `lastLogin`, `currentLogin`, `locked`, `session`, `useTwoFactor`, `secret`, `trustedTokenVersion`, `backupCodes`, `loginAttempts`, `newsletter`) VALUES(2, 1259754224, 'Donna', 'Evans', '191635200', 'female', '', '', '', '', '', '', '', '', '', 'd.evans@example.com', '', 'en', 0x613a313a7b693a303b733a313a2231223b7d, '1', 'd.evans', '$2y$10$3.ghpkaeW/ATUeSrhA8sgedbs4AdboKczBPV7IqyweXS6eCQ749pS', '', 0x00000000000000000000000000000000, '', '', '', 1259754224, 1516703824, 1553272691, 0, 0x613a333a7b733a373a2272656665726572223b613a323a7b733a343a226c617374223b733a33343a226d792d6163636f756e742e68746d6c3f7468656d653d63746f2d626f6f7374726170223b733a373a2263757272656e74223b733a33303a226c6f676f75742e68746d6c3f7468656d653d63746f2d626f6f7374726170223b7d733a31303a22636170746368615f3230223b613a333a7b733a333a2273756d223b693a31313b733a333a226b6579223b733a33333a22633036623236313465326335613031643137636532333039656434383562336533223b733a343a2274696d65223b693a313339303134323031313b7d733a32313a22636170746368615f6c6f73745f70617373776f7264223b613a333a7b733a333a2273756d223b693a363b733a333a226b6579223b733a33333a22633634346635353637323565353066653262636138316537653035613731373139223b733a343a2274696d65223b693a313430313236303637373b7d7d, '', NULL, 0, NULL, 0, ''); -INSERT INTO `tl_member` (`id`, `tstamp`, `firstname`, `lastname`, `dateOfBirth`, `gender`, `company`, `street`, `postal`, `city`, `state`, `country`, `phone`, `mobile`, `fax`, `email`, `website`, `language`, `groups`, `login`, `username`, `password`, `assignDir`, `homeDir`, `disable`, `start`, `stop`, `dateAdded`, `lastLogin`, `currentLogin`, `locked`, `session`, `useTwoFactor`, `secret`, `trustedTokenVersion`, `backupCodes`, `loginAttempts`, `newsletter`) VALUES(3, 1259754224, 'John', 'Doe', '0', '', '', '', '', '', '', '', '', '', '', 'j.doe@example.com', '', 'en', 0x613a323a7b693a303b733a313a2232223b693a313b733a313a2231223b7d, '1', 'j.doe', '7a86a8cf9d7510cc4661b217133f2eed37981b75', '', 0x00000000000000000000000000000000, '', '', '', 1259754224, 0, 0, 0, 0x613a313a7b733a373a2272656665726572223b613a323a7b733a343a226c617374223b733a31353a222f686973746f72792d312e68746d6c223b733a373a2263757272656e74223b733a313a222f223b7d7d, '', NULL, 0, NULL, 0, ''); - -INSERT INTO `tl_member_group` (`id`, `tstamp`, `name`, `redirect`, `jumpTo`, `disable`, `start`, `stop`) VALUES(1, 1172600419, 'Violin Students', '1', 6, '', '', ''); -INSERT INTO `tl_member_group` (`id`, `tstamp`, `name`, `redirect`, `jumpTo`, `disable`, `start`, `stop`) VALUES(2, 1172600394, 'Piano Students', '1', 7, '', '', ''); -INSERT INTO `tl_member_group` (`id`, `tstamp`, `name`, `redirect`, `jumpTo`, `disable`, `start`, `stop`) VALUES(3, 1367401146, 'general Members', '1', 67, '', '', ''); - -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(371, 17, 1523542648, 'Footer / Copyright', 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', 'html', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:0:{}', '', '', NULL, NULL, '
\n
\n {{theme::content::ODD02/05}}\n
\n
', 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', '', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(372, 17, 1637747701, 'Footer / Main', 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', 'html', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:0:{}', '', '', NULL, NULL, '\n', 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', '', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(373, 17, 1538491237, 'Footer / Navigation', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'customnav', 0, 0, '', '', '', 0, 'nav_default', '', 0x613a353a7b693a303b693a39323b693a313b693a3131383b693a323b693a3130313b693a333b693a3133343b693a343b693a3133393b7d, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:0:{}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(375, 17, 1528378451, 'Kontaktformular', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:12:\"Ihre Anfrage\";}', 'form', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 6, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:0:{}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(382, 17, 1644931859, 'Navigationsleiste mit Schräge', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'navigation', 0, 0, '', '', '', 0, 'nav_default_odd', 'mod_navigation_odd_sloping', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:0:{}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(383, 17, 1538393056, 'Sitemap', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'sitemap', 0, 0, '', '', '', 0, 'nav_makler_sitemap', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:0:{}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(384, 17, 1538494168, 'Unternavigation', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'navigation', 1, 3, '', '', '', 0, 'nav_default', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:0:{}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"subnav\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(386, 17, 1539185439, 'Module / News / Detailansicht', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', 'newsreader', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_full_odd', 'a:1:{i:0;s:4:\"date\";}', 0, '', 'all_items', 0x613a313a7b693a303b733a313a2232223b7d, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(387, 17, 1538492838, 'Module / News / Einfache Liste', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'newslist', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 4, 'simple', '', 'main', 0, '', NULL, '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 0, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_simple', 'a:1:{i:0;s:4:\"date\";}', 0, '', 'all_items', 0x613a313a7b693a303b733a313a2232223b7d, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(388, 17, 1552645431, 'Module / News / Liste mit Bildern', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'newslist', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 4, 'simple', '', 'main', 0, '', NULL, '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"23\";}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 0, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest_odd', 'a:1:{i:0;s:4:\"date\";}', 0, '', 'all_items', 0x613a313a7b693a303b733a313a2232223b7d, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(389, 17, 1539183296, 'Module / News / Liste ohne Bilder', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'newslist', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 4, 'simple', '', 'main', 0, '', NULL, '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 0, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_short_odd', 'a:1:{i:0;s:4:\"date\";}', 0, '', 'all_items', 0x613a313a7b693a303b733a313a2232223b7d, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(391, 17, 1539099775, 'Module / News / Startseite', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'newslist', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"23\";}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 2, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest_odd', 'a:1:{i:0;s:4:\"date\";}', 0, '', 'all_items', 0x613a313a7b693a303b733a313a2232223b7d, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(392, 17, 1637747928, 'Newsletter / Abonnieren / Startseite', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:36:\"Jetzt unseren Newsletter abonnieren!\";}', 'subscribe', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 148, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '1', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"nl-footer skw-tl\";}', 'nl_default_footer_odd', NULL, 'Sie haben folgende Verteiler auf ##domain## abonniert:\n\n##channels##\n\nBitte klicken Sie http://##domain##/newsletter-aktivierung.html?token=##token## um Ihr Abonnement zu aktivieren. Falls Sie die Bestellung nicht selbst getätigt haben, bitte ignorieren Sie diese E-Mail.\n\nDie Einwilligung kann jederzeit auf http://##domain##/newsletter-kuendigung.html widerrufen werden.', '1', 0x613a313a7b693a303b733a313a2234223b7d, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(393, 17, 1638439567, 'Module / News / Detailansicht / Kopfbild', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', 'newsreader', 0, 0, '', '', '', 0, '', 'mod_newsreader_odd_header', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_full_header_odd', '', 0, '', 'all_items', 0x613a313a7b693a303b733a313a2232223b7d, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(394, 17, 1539331627, 'Module / Events / Detailansicht', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', 'eventreader', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full_odd', 0, 0, 'ascending', '', 'cal_month', 1, '', '', 0x613a313a7b693a303b733a313a2234223b7d, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(395, 17, 1552650236, 'Module / Events / Eventliste mit Bildern', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:0:\"\";}', 'eventlist', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 4, 'simple', '', 'main', 0, '', NULL, '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"23\";}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_teaser_odd', 0, 394, 'ascending', '', 'next_two', 1, '', '1', 0x613a313a7b693a303b733a313a2234223b7d, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(396, 17, 1539330004, 'Module / Events / Eventliste ohne Bilder', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'eventlist', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 4, 'simple', '', 'main', 0, '', NULL, '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_list_odd', 0, 394, 'ascending', '', 'next_two', 1, '', '1', 0x613a313a7b693a303b733a313a2234223b7d, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(397, 17, 1539330812, 'Module / Events / Eventliste Upcoming', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'eventlist', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 4, 'simple', '', 'main', 0, '', NULL, '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_upcoming', 0, 394, 'ascending', '', 'next_next_year', 1, '', '1', 0x613a313a7b693a303b733a313a2234223b7d, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(398, 17, 1644935762, 'Module / Events / Kalender', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:8:\"Kalender\";}', 'calendar', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 110, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default_odd', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', 0x613a313a7b693a303b733a313a2234223b7d, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(399, 17, 1539186001, 'Module / Events / Mini-Kalender', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Mini-Kalender\";}', 'calendar', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 109, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_mini', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', 0x613a313a7b693a303b733a313a2234223b7d, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(400, 17, 1539331273, 'Module / Events / Detailansicht / Kopfbild', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', 'eventreader', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full_header_odd', 0, 0, 'ascending', '', 'cal_month', 1, '', '', 0x613a313a7b693a303b733a313a2234223b7d, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(401, 17, 1539334988, 'Module / User / Automatischer Logout', '', 'logout', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(402, 17, 1539334988, 'Module / User / Konto schließen', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:16:\"Konto schließen\";}', 'closeAccount', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', 'close_deactivate', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(403, 17, 1539335128, 'Module / User / Login-Formular', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:14:\"Login-Formular\";}', 'login', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 130, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(404, 17, 1539334988, 'Module / User / Passwort ändern', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:16:\"Passwort ändern\";}', 'changePassword', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(405, 17, 1539334988, 'Module / User / Passwort vergessen', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:18:\"Passwort vergessen\";}', 'lostPassword', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, 'Sie haben ein neues Passwort für ##domain## angefordert.\n\nBitte klicken Sie ##link## um das neue Passwort festzulegen. Wenn Sie diese E-Mail nicht angefordert haben, kontaktieren Sie bitte den Administrator der Webseite.', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(406, 17, 1644936081, 'Module / User / Personendaten', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Personendaten\";}', 'personalData', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', 0x613a32303a7b693a303b733a393a2266697273746e616d65223b693a313b733a383a226c6173746e616d65223b693a323b733a31313a22646174654f664269727468223b693a333b733a363a2267656e646572223b693a343b733a373a22636f6d70616e79223b693a353b733a363a22737472656574223b693a363b733a363a22706f7374616c223b693a373b733a343a2263697479223b693a383b733a353a227374617465223b693a393b733a373a22636f756e747279223b693a31303b733a353a2270686f6e65223b693a31313b733a363a226d6f62696c65223b693a31323b733a333a22666178223b693a31333b733a353a22656d61696c223b693a31343b733a373a2277656273697465223b693a31353b733a383a226c616e6775616765223b693a31363b733a363a2267726f757073223b693a31373b733a383a22757365726e616d65223b693a31383b733a383a2270617373776f7264223b693a31393b733a31303a226e6577736c6574746572223b7d, 'member_grouped', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(407, 17, 1644936092, 'Module / User / Registrierung', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Registrierung\";}', 'registration', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', 0x613a32303a7b693a303b733a393a2266697273746e616d65223b693a313b733a383a226c6173746e616d65223b693a323b733a31313a22646174654f664269727468223b693a333b733a363a2267656e646572223b693a343b733a373a22636f6d70616e79223b693a353b733a363a22737472656574223b693a363b733a363a22706f7374616c223b693a373b733a343a2263697479223b693a383b733a353a227374617465223b693a393b733a373a22636f756e747279223b693a31303b733a353a2270686f6e65223b693a31313b733a363a226d6f62696c65223b693a31323b733a333a22666178223b693a31333b733a353a22656d61696c223b693a31343b733a373a2277656273697465223b693a31353b733a383a226c616e6775616765223b693a31363b733a363a2267726f757073223b693a31373b733a383a22757365726e616d65223b693a31383b733a383a2270617373776f7264223b693a31393b733a31303a226e6577736c6574746572223b7d, 'member_grouped', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '1', '', '', '', NULL, '1', 0, 'Vielen Dank für Ihre Registrierung auf ##domain##.\n\nBitte klicken Sie ##link## um Ihre Registrierung abzuschließen und Ihr Konto zu aktivieren. Wenn Sie keinen Zugang angefordert haben, ignorieren Sie bitte diese E-Mail.', NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(408, 17, 1539344139, 'Module / Newsletter / Abonnieren', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:21:\"Newsletter abonnieren\";}', 'subscribe', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 148, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_default_odd', NULL, 'Sie haben folgende Verteiler auf ##domain## abonniert:\n\n##channels##\n\nBitte klicken Sie http://##domain##/newsletter-aktivierung.html?token=##token## um Ihr Abonnement zu aktivieren. Falls Sie die Bestellung nicht selbst getätigt haben, bitte ignorieren Sie diese E-Mail.\n\nDie Einwilligung kann jederzeit auf http://##domain##/newsletter-kuendigung.html widerrufen werden.', '', 0x613a313a7b693a303b733a313a2234223b7d, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(409, 17, 1539339179, 'Module / Newsletter / Kündigen', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Newsletter kündigen\";}', 'unsubscribe', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_default_odd', 'Sie haben folgende Abonnements auf ##domain## gekündigt:\n\n##channels##', NULL, '', 0x613a313a7b693a303b733a313a2234223b7d, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(412, 17, 1539344450, 'Module / FAQ / FAQ-Leser', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', 'faqreader', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, 0x613a313a7b693a303b733a313a2235223b7d, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(413, 17, 1539344463, 'Module / FAQ / FAQ-Liste', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'faqlist', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, 0x613a313a7b693a303b733a313a2235223b7d, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(414, 17, 1539345484, 'Module / FAQ / FAQ-Seite', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'faqpage', 0, 0, '', '', '', 0, '', 'mod_faqpage_odd', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, 0x613a313a7b693a303b733a313a2235223b7d, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(415, 17, 1539347848, 'Module / Suchmaschine', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', 'search', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', 'a:2:{i:0;s:2:\"48\";i:1;s:4:\"1000\";}', 0, 0, 'advanced', 'search_default', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(417, 17, 1644831836, 'Navigationsleiste ohne Schräge', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'navigation', 0, 0, '', '', '', 0, 'nav_default_odd', 'mod_navigation_odd', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:0:{}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(418, 17, 1560846305, 'Modaler Dialog / Text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Überschrift\";}', 'ct_modal', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', '

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

', '', 'Modaler Dialog mit Text', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(419, 17, 1560846342, 'Modaler Dialog / Text / vertikal zentriert', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Überschrift\";}', 'ct_modal', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, 'modal-dialog-centered', '', '

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

', '', 'Modaler Dialog mit Text, vertikal zentriert', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(420, 17, 1560846329, 'Modaler Dialog / Text / langer Text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Überschrift\";}', 'ct_modal', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', '

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.+Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.+Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

', '', 'Modaler Dialog mit Text, mit Scrolling', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(421, 17, 1560846373, 'Modaler Dialog / Formular', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Überschrift\";}', 'ct_modal', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, 'modal-dialog-centered modal-lg', '', '

{{insert_form::8}}

', '', 'Modaler Dialog mit Formular', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(422, 17, 1560846353, 'Modaler Dialog / Text / vertikal zentriert und breiter', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Überschrift\";}', 'ct_modal', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, 'modal-dialog-centered modal-lg', '', '

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

', '', 'Modaler Dialog mit Text, vertikal zentriert und breiter', 'all_items', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `cal_featured`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(423, 17, 1638526626, 'Social Feed', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'newslist', 0, 0, '', '', '', 0, '', 'mod_newslist_social_feed', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', '', NULL, NULL, NULL, 3600, NULL, '', 15, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', NULL, NULL, '', NULL, NULL, '', '', '', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, '', '', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_social_feed_odd', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', 0x613a313a7b693a303b733a313a2233223b7d, '', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', 'all_items', NULL, NULL, '', 0); - -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `robots`) VALUES(10, 2, 1552644617, 'Wohnhaus in der Görnischen Gasse', 'wohnhaus-in-der-görnischen-gasse', 1, 1517047500, 1517047500, '', NULL, 'Tourismus', '

Dieses Wohnhaus im Stil der Renaissance entstand um 1580. Noch heute sind aus dieser Zeit zahlreiche Schmuckelemente am Haus erhalten: Tür- und Fenstergewände, Konsolsteine und Deckengewölbe.

', '1', '', 0xb525bf9c467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', '', NULL, 'default', 0, 0, '', '', '', '', '', '1', '', '', ''); -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `robots`) VALUES(11, 2, 1552644500, 'Wohnhaus in der Rosengasse', 'wohnhaus-in-der-rosengasse', 1, 1517058300, 1517058300, '', NULL, 'Wohnen', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', '1', '', 0xb81fbc97467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', '', NULL, 'default', 0, 0, '', '', '', '', '', '1', '', '', ''); -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `robots`) VALUES(12, 2, 1552645851, 'Kasernengelände in Meißen-Bohnitzsch', 'kasernengelände-in-meißen-bohnitzsch', 1, 1510844280, 1510844280, '', NULL, 'Wissenswertes', '

Das Kasernengelände in Meißen-Bohnitzsch wurde 1936 angelegt und wurde ab Mai 1945 von der Sowjetunion genutzt. Unter anderem war das 7. Garde-Panzerregiment der GSSD hier untergebracht.

', '1', '', 0xcbc4a14c467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', '', NULL, 'default', 0, 0, '', '', '', '', '', '1', '', '', ''); -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `robots`) VALUES(23, 2, 1552645482, 'Ziegelei am Roten Haus', 'ziegelei-am-roten-haus', 1, 1516965840, 1516965840, '', NULL, 'Industrie', '

Die Ziegelei am Roten Haus war die letzte ihrer Art in Meißen, sie war nach fast 140 Jahren Produktion 1993 geschlossen worden.

', '1', '', 0xc433b88f467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', '', NULL, 'default', 0, 0, '', '', '', '', '', '1', '', '', ''); -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `robots`) VALUES(24, 2, 1552645464, 'Landkrankenhaus', 'landkrankenhaus', 1, 1516965840, 1516965840, '', NULL, 'Wissenswertes', '

Das ehemalige Landkrankenhaus ist seit dem Neubau der Elblandklinik in Meißen-Bohnitzsch ungenutzt.

', '1', '', 0xce7c80c2467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', '', NULL, 'default', 0, 0, '', '', '', '', '', '1', '', '', ''); -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `robots`) VALUES(25, 2, 1552645695, 'Herrenhaus in der Dresdner Straße', 'herrenhaus-in-der-dresdner-straße', 1, 1516965840, 1516965840, '', NULL, 'Wissenswertes', '

Zum \"Elbdom\"-Areal gehörte in den letzten 20 Jahren auch das Grundstück der Unternehmerfamilie Clemens Kurtz in der Dresdner Straße 19.

', '1', '', 0xd285349b467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', '', NULL, 'default', 0, 0, '', '', '', '', '', '1', '', '', ''); -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `robots`) VALUES(26, 2, 1552645808, 'Cöllner Schlösschen', 'cöllner-schlösschen', 1, 1516965840, 1516965840, '', NULL, 'Wissenswertes', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '1', '', 0xc6eaaf6d467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', '', NULL, 'default', 0, 0, '', '', '', '', '', '1', '', '', ''); -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `robots`) VALUES(27, 3, 1638524413, 'schneller. leichter. klimafreundlicher. composer. ...', '', 0, 1637664654, 1637664654, '', NULL, '', 'schneller. leichter. klimafreundlicher. composer.
Mega! 👏

#contao #composer #greenweb', '1', '', NULL, '', '', '', '', '', '', '', 'above', '', NULL, 'external', 0, 0, 'https://www.linkedin.com/feed/update/urn:li:activity:6868863409782345728', '1', '', '', '', '1', '', '', ''); -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `robots`) VALUES(28, 3, 1638524413, 'Wir sind im IHK ecoFinder!\n\nDie pdir GmbH ist nun ...', '', 0, 1637663134, 1637663134, '', NULL, '', 'Wir sind im IHK ecoFinder!

Die pdir GmbH ist nun offiziell eingetragen in Deutschlands größtem Umweltportal - dem IHK ecoFinder. In diesem findet man kompetente Anbieter von Produkten und Dienstleistungen aus der Umwelt- und Energiebranche - schnell, präzise und bundesweit. Wir haben uns zum Thema klimafreundliche Webseiten registrieren lassen 🌱💪

https://lnkd.in/ebG-aKpT

#ihk #ecofriendly #Klimakrise #klimafreundlich #webseite #digitalagentur #greenweb #greenwebdesign #sustainableweb #sustainablewebsite #sustainablewebdesign #klimafreundlichesinternet #klimafreundlichewebseite #pdir #01contaotheme', '1', '', 0x03978afc541d11ec8ee0e0d55e59bff3, '', '', '', '', '', '', '', 'above', '', NULL, 'external', 0, 0, 'https://www.linkedin.com/feed/update/urn:li:activity:6868857032938721280', '1', '', '', '', '1', '', '', ''); -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `robots`) VALUES(29, 3, 1638524413, 'Jaja - ab und zu wagen wir uns auch noch in die an ...', '', 0, 1636452825, 1636452825, '', NULL, '', 'Jaja - ab und zu wagen wir uns auch noch in die analoge Welt und erschaffen das ein oder andere Printprodukt. So richtig zum anfassen - wie die neuen Gutscheine der @diehafenmeister! Diese sind mit UV-Lack vereldelt sogar echt exklusiv geworden - eben passend zur Location ;)

Ach übrigens... Weihnachten steht ja bald vor der Tür und da wäre so ein Gutschein für ein außergewöhnliches Grill-Event bei den Hafenmeistern doch vielleicht ein tolles Geschenk?!?

Von uns jedenfalls wärmstens zu empfehlen! 🤩🤤🥳

👉 https://lnkd.in/eCyFS7nf

#printdesign #flyer #gutschein #eventlocation #dresden #weihnachtsgeschenk #grillevent', '1', '', 0x03978af5541d11ec8ee0e0d55e59bff3, '', '', '', '', '', '', '', 'above', '', NULL, 'external', 0, 0, 'https://www.linkedin.com/feed/update/urn:li:activity:6863780629511770112', '1', '', '', '', '1', '', '', ''); -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `robots`) VALUES(30, 3, 1638524414, 'Zum heutigen Weltinternettag mal ein paar Worte in ...', '', 0, 1635498294, 1635498294, '', NULL, '', 'Zum heutigen Weltinternettag mal ein paar Worte in Richtung Nachhaltigkeit: 🌱

Das Internet verbraucht Strom – und zwar eine Menge. Denn Rechenleistung, Kühlung und Stromversorgung von Tausenden von Servern kosten täglich Unmengen an Energie und verursachen einen enormen CO₂ Ausstoß. Wusstet ihr, dass eine durchschnittliche Webseite mit ca. 10.000 Seitenaufrufen im Monat um die 200 kg CO₂ pro Jahr verantwortet ?!?

Im gleichen Zeitraum bindet ein Baum im Schnitt ca. 11 Kg CO₂. Es müssten also ca. 20 Bäume gepflanzt werden, um das online CO₂ einer einzigen Website durch Bäume wieder zu kompensieren! Puh - das hört sich ziemlich viel an, oder?

Genau das haben wir uns auch gedacht und beschäftigten uns deshalb seit einiger Zeit mit der Erstellung klimafreundlicher Webseiten. Und wir haben festgestellt: Energieeffizientes Webdesign ist mehr als nur umweltfreundlich - es ist automatisch auch performanter, nutzerfreundlicher & SEO-optimierter! 💪

Wie das geht? Erklären wir dir hier:
https://lnkd.in/eRUPN27z

#weltinternettag #greenweb #greenwebdesign #sustainableweb #sustainablewebsite #sustainablewebdesign #klimafreundlichesinternet #klimafreundlichewebseite #webdesign #webdesignagency #webdevelopment #webdevelopmentagency #Klimakrise #klimakrise #pdir #01contaotheme', '1', '', 0x03978aeb541d11ec8ee0e0d55e59bff3, '', '', '', '', '', '', '', 'above', '', NULL, 'external', 0, 0, 'https://www.linkedin.com/feed/update/urn:li:activity:6859777036349702144', '1', '', '', '', '1', '', '', ''); -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `robots`) VALUES(31, 3, 1638524414, 'Tutorial-Video zum 0.1 Isotope Contao Theme verfüg ...', '', 0, 1626425582, 1626425582, '', NULL, '', 'Tutorial-Video zum 0.1 Isotope Contao Theme verfügbar!
Marvin erklärt euch, wie man mit der Contao Shop-Erweiterung Isotope und dem 0.1 Theme einen schicken Webshop erstellt.

Macht er echt gut, schaut mal rein!
Danke Marvin!

https://lnkd.in/eMs6CpE

#webshop #contaocms #contao #isotopeecommerce #contaowebsite #contaowebshop #onlineshop #ecommerce #pdir #01contaotheme', '1', '', 0x03978ae4541d11ec8ee0e0d55e59bff3, '', '', '', '', '', '', '', 'above', '', NULL, 'external', 0, 0, 'https://www.linkedin.com/feed/update/urn:li:activity:6821723323286790144', '1', '', '', '', '1', '', '', ''); -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `robots`) VALUES(32, 3, 1638524414, 'Neues Template für ausgefallene Online Shops!\nUnse ...', '', 0, 1624609850, 1624609850, '', NULL, '', 'Neues Template für ausgefallene Online Shops!
Unser \"schrägstes\" Contao Theme \"ODD\" kann nun auch Produkte präsentieren...

In der Shop-Version steht ein vorkonfigurierter Isotope eCommerce-Shop inkl. optimierter Startseite & typischer Shop-Elemente, wie Themenwelten, Marken und Produktslider im ausgefallenen ODD Style zur Verfügung.

Hier gehts zur DEMO:
https://lnkd.in/eCHGXR8

Hol dir das ODD Shop-Theme und viele weitere schicke Contao Themes hier:
https://contao-themes.net

#onlineshop #ecommerce #websitedesign #websitetemplate #webshop #shoptemplate #onlineshoptemplate
#contao #contaocms #isotopeecommerce #contaoisotope
#pdir #contaotheme #oddcontaotheme #odd', '1', '', 0x03978adc541d11ec8ee0e0d55e59bff3, '', '', '', '', '', '', '', 'above', '', NULL, 'external', 0, 0, 'https://www.linkedin.com/feed/update/urn:li:activity:6814107594328748032', '1', '', '', '', '1', '', '', ''); -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `robots`) VALUES(33, 3, 1638524415, 'Hey! Kennst du schon den pdir Newsletter?\nWas es d ...', '', 0, 1623773734, 1623773734, '', NULL, '', 'Hey! Kennst du schon den pdir Newsletter?
Was es da drin spannendes gibt und warum du den brauchen solltest fragst du dich?

* Du bekommst alle unsere Freebies (nützliche Checklisten, gratis E-Books, ...) als aller erstes
* Du erhältst stets aktuelle Updates zu Themes und Extensions
* Du wirst stets mit wertvollen Tipps, Tricks und unseren Learnings zum Thema Web-Entwicklung und Contao versorgt
* Du bekommst einen Einblick in unseren Agenturalltag und die ein oder andere Anekdote zu lesen
* Manchmal versenden wir auch Hundebaby-Bilder
aber nur selten...

Klingt gut? Dann meld dich hier kostenlos und unverbindlich zum pdir Newsletter an:

https://pdir.de/newsletter

Kein Spam, niemals. Versprochen.

#newsletter #contao #webentwicklung #webdevelopment #websitetheme #websitetemplates #pdir #tippsundtricks #webagenturalltag #bürohund', '1', '', 0x03978ad4541d11ec8ee0e0d55e59bff3, '', '', '', '', '', '', '', 'above', '', NULL, 'external', 0, 0, 'https://www.linkedin.com/feed/update/urn:li:activity:6810600668986974208', '1', '', '', '', '1', '', '', ''); -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `robots`) VALUES(34, 3, 1638524415, 'Online-Shop-Entwickler aufgepasst:\nWir haben dem 0 ...', '', 0, 1622715433, 1622715433, '', NULL, '', 'Online-Shop-Entwickler aufgepasst:
Wir haben dem 0.1 Isoptope Bundle eine schicke Shop-Startseite spendiert - mit vorkonfigurierten Shop-Elementen, wie Themenwelten, Markenlogos und Produktslider im klimafreundlichen 0.1 Stil:

https://lnkd.in/ehSiNUp

Einen schicken, performanten Online-Shop mit Contao aufsetzen? Sollte also kein Problem mehr sein - los gehts!

Das Theme ist auch in der Shopversion (mit 0.46g C02) übrigens immernoch klimafreundlich

#onlineshop #ecommerce #websitedesign #websitetemplate #webshop #shoptemplate
#contao #contaocms #isotopeecommerce #contaoisotope
#pdir #contaotheme #01contaotheme #greenweb #Klimakrise #saveenergy #sustainableweb #sustainablewebdesign', '1', '', 0x03978ac8541d11ec8ee0e0d55e59bff3, '', '', '', '', '', '', '', 'above', '', NULL, 'external', 0, 0, 'https://www.linkedin.com/feed/update/urn:li:activity:6806161831955111936', '1', '', '', '', '1', '', '', ''); -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `robots`) VALUES(35, 3, 1638524420, '3 Jahre DSGVO 😱 und was haben wir daraus gelernt?! ...', '', 0, 1621949572, 1621949572, '', NULL, '', '3 Jahre DSGVO 😱 und was haben wir daraus gelernt?!

Regeln zum Datenschutz gab es auch bereits zu genüge vor Einführung der DSGVO im Mai 2018, aber in diesem Zuge bekam das Thema Datenschutz in Deutschland nochmal eine ganz andere Aufmerksamkeit und es herrschte fortan viel Unsicherheit und Verwirrung. Im Nachhinein lässt sich sagen, dass die ganze Aufregung wohl etwas übertrieben war, die Abmahnwellen bleiben aus, Klarheit über die nun geltenden Regeln allerdings ebenfalls, denn viele sind immer noch schwammig und werden von verschiedenen Experten unterschiedlich ausgelegt.

Was wir davon halten, daraus gelernt haben und uns die Erfahrung gezeigt hat, haben wir dir mal in einem Blogbeitrag festgehalten:

👉 https://lnkd.in/dvsWhzp

#DSGVO #datenschutz #datenschutzrecht #pdir #checkliste #freebie', '1', '', 0x03978a95541d11ec8ee0e0d55e59bff3, '', '', '', '', '', '', '', 'above', '', NULL, 'external', 0, 0, 'https://www.linkedin.com/feed/update/urn:li:activity:6802949578397118464', '1', '', '', '', '1', '', '', ''); -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `robots`) VALUES(36, 3, 1638524420, 'Vom GEBEN und NEHMEN\n\nEs ist nicht immer einfach a ...', '', 0, 1621348850, 1621348850, '', NULL, '', 'Vom GEBEN und NEHMEN

Es ist nicht immer einfach als Webentwickler & Dienstleister neben der Entwicklungsarbeit guten Support für die eigenen Produkte zu liefern - aber wir geben stets unser Bestes... und freuen uns wie Schnitzel, wenn unsere Kunden es uns danken.
Deshalb heute ein DANKE an alle Kunden zurück, die uns in letzter Zeit so fleißg positiv bei Google Business bewertet haben!!!

Wenn auch du in dieser Liste erscheinen willt, lass uns gern eine Bewertung da ;)
> https://lnkd.in/eaVbArw
Danke!

#googlerezension #testimonial #businessbewertung #kundenfeedback', '1', '', 0x08043c64541d11ec8ee0e0d55e59bff3, '', '', '', '', '', '', '', 'above', '', NULL, 'external', 0, 0, 'https://www.linkedin.com/feed/update/urn:li:activity:6800429967768391681', '1', '', '', '', '1', '', '', ''); - -INSERT INTO `tl_newsletter` (`id`, `pid`, `tstamp`, `subject`, `alias`, `content`, `text`, `addFile`, `files`, `template`, `sendText`, `externalImages`, `sender`, `senderName`, `sent`, `date`, `mailerTransport`) VALUES(4, 4, 1511793022, 'Keeping everyone up to date', '', '

Keeping everyone up to date

\n

Contao has a built in Newsletter administration system. It offers some features to create newsletters on a regular basis. Your are able to set up an HTML template, create your newsletters just as plain text or use both functionalities. Even attachments or external images can optionally be integrated.

SATURDAY
December 24th, 2013
7:30 pm

\n

SUNDAY
December 26th, 2013
3:00 pm

\n

Tickets $20[nbsp]to[nbsp]$40

\n

Call (416) 872-4255

', '', '', 0x613a313a7b693a303b4e3b7d, 'mail_default', '', '', '', '', '1', '1511949450', ''); -INSERT INTO `tl_newsletter` (`id`, `pid`, `tstamp`, `subject`, `alias`, `content`, `text`, `addFile`, `files`, `template`, `sendText`, `externalImages`, `sender`, `senderName`, `sent`, `date`, `mailerTransport`) VALUES(5, 4, 1511948990, 'The right newsletter for everyone', 'the-right-newsletter-for-everyone', '

The right newsletter for everyone

\n

The newsletter functionalities of Contao allows you to create different \"Channels\". So it\'s possible to adress visitors or regular users of your site with their specific interests. Before you send a newsletter to a list of subscribers you can make the use of the option to send a preview. Better check your newsletters on all mail clients. Some of you might know that a lot of mail servers just allow a certain amount of Emails sent within a time-amount: The \"Mails per cycle\" function will help here with larger lists.

SATURDAY
December 24th, 2013
7:30 pm

\n

SUNDAY
December 26th, 2013
3:00 pm

\n

Tickets $20[nbsp]to[nbsp]$40

\n

Call (416) 872-4255

', 'TEXT Content', '', 0x613a313a7b693a303b4e3b7d, 'mail_default', '', '', '', '', '', '1360273849', ''); - -INSERT INTO `tl_newsletter_channel` (`id`, `tstamp`, `title`, `jumpTo`, `template`, `sender`, `senderName`, `mailerTransport`) VALUES(4, 1539339319, 'Odd / Newsletter', 136, 'mail_default', 'info@example.de', 'Contao Themes', ''); - -INSERT INTO `tl_news_archive` (`id`, `tstamp`, `title`, `jumpTo`, `protected`, `groups`, `allowComments`, `notify`, `sortOrder`, `perPage`, `moderate`, `bbcode`, `requireLogin`, `disableCaptcha`) VALUES(2, 1638374553, 'Odd / Blog', 108, '', NULL, '1', 'notify_admin', 'ascending', 0, '', '', '', ''); -INSERT INTO `tl_news_archive` (`id`, `tstamp`, `title`, `jumpTo`, `protected`, `groups`, `allowComments`, `notify`, `sortOrder`, `perPage`, `moderate`, `bbcode`, `requireLogin`, `disableCaptcha`) VALUES(3, 1638523142, 'LinkedIn', 90, '', NULL, '', 'notify_admin', 'ascending', 0, '', '', '', ''); - -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(90, 0, 384, 1644931274, 'odd - contao theme', 'odd', 'root', 'odd - contao theme', 'de', '', NULL, 'permanent', 0, '', '', '', '', '', '', '1', '', 'd.m.Y', 'H:i', 'd.m.Y H:i', '1', '', '', NULL, '1', 55, 0, '', 604800, 604800, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', '', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '1', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(91, 90, 128, 1540219874, 'Start', 'index', 'regular', 'Odd Theme Demo', '', 'index,follow', 'Auf dieser Seite finden Sie Demo-Inhalte des Odd Themes für das Content-Management-System Contao.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', 'map_default', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(92, 90, 192, 1553272043, 'Module', 'module', 'forward', '', '', 'index,follow', NULL, 'permanent', 93, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 56, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(93, 92, 128, 1553272043, 'News', 'news', 'regular', 'News - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie Newsarchive eingebunden werden können.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(101, 90, 528, 1555059486, 'Elemente', 'elemente', 'forward', '', '', 'index,follow', NULL, 'permanent', 113, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 56, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', 'theme-inspector', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(105, 90, 896, 1540219814, 'ODD Elements', '', 'folder', '', '', '', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(106, 105, 128, 1538489256, '01 / Kopfzeile', '01-kopfzeile', 'regular', '', '', 'index,follow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(107, 105, 256, 1538489266, '02 / Fußzeile', '02-fußzeile', 'regular', '', '', 'index,follow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(108, 93, 128, 1553863983, 'News Detailansicht', 'news-details', 'regular', '', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 50, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(109, 92, 192, 1555073786, 'Events', 'module/events', 'regular', 'Events - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie Eventlisten eingebunden werden können.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(110, 109, 128, 1553272043, 'Event Detailansicht', 'event-details', 'regular', '', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(113, 101, 128, 1553272043, 'Textelemente', 'inhaltselemente/textelemente', 'regular', 'Textelemente - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie verschiedene Beispiele wie Textelemente eingebunden werden können.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(114, 101, 256, 1553272043, 'Akkordion', 'inhaltselemente/akkordion', 'regular', 'Akkordion - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel wie ein Akkordion-Element eingebunden werden kann.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(115, 101, 384, 1553272043, 'Content Slider', 'inhaltselemente/content-slider', 'regular', 'Content Slider - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie verschiedene Beispiele wie Content-Slider eingebunden werden können.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 55, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(116, 101, 512, 1553272043, 'Media-Elemente', 'inhaltselemente/media-elemente', 'regular', 'Media-Elemente - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie verschiedene Beispiele wie Media-Elemente, wie z. B. Bildergalerien oder Videos eingebunden werden können.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(118, 90, 352, 1555062182, 'Layouts', 'layouts', 'forward', '', '', 'index,follow', NULL, 'permanent', 161, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(120, 159, 128, 1555059417, 'Layout mit linker Spalte', 'layouts/layout-mit-linker-spalte', 'regular', 'Layout mit linker Spalte - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel einer Seite mit einer linken Spalte.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 56, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(121, 159, 256, 1555059417, 'Layout mit rechter Spalte', 'layouts/layout-mit-rechter-spalte', 'regular', 'Layout mit rechter Spalte - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel einer Seite mit einer rechten Spalte.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 57, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(122, 118, 96, 1555059495, 'Dreispaltiges Layout', 'layouts/dreispaltiges-layout', 'regular', 'Dreispaltiges Layout', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel einer Seite mit einer linken und rechten Spalte.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 58, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(124, 118, 32, 1555059457, 'Einspaltiges Layout', 'layouts/einspaltiges-layout', 'regular', 'Einspaltiges Layout - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel einer Seite mit nur einer Spalte.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 55, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(127, 101, 576, 1553870717, 'Weitere Theme-Elemente', 'theme-elemente', 'regular', 'Theme-Elemente', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Themes für das Content-Management-System Contao finden Sie verschiedene Beispiele wie weitereTheme Elemente eingebunden werden können.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(128, 101, 544, 1553272043, 'Download-Elemente', 'style-guide/download-elemente', 'regular', 'Download-Elemente - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie verschiedene Beispiele wie Download-Elemente eingebunden werden können.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(129, 92, 384, 1553272043, 'Navigation', 'module/navigation', 'regular', 'Navigation - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie die verschiedenen Navigationstypen eingebunden werden können.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(130, 92, 512, 1553272043, 'User', 'module/user', 'regular', 'User - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie User-Module (z. B. Login- und Registrierung) eingebunden werden können.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(131, 92, 640, 1553272043, 'Newsletter', 'module/newsletter', 'regular', 'Newsletter - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie ein Newsletter eingebunden werden kann.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(132, 92, 768, 1553272043, 'FAQ', 'module/faq', 'regular', 'FAQ - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel, wie ein FAQ eingebunden werden kann.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(133, 92, 896, 1553272043, 'Formulare', 'module/formulare', 'regular', 'Formulare - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie Formulare eingebunden werden kann.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(134, 90, 704, 1553272043, 'Impressum', 'impressum', 'regular', 'Impressum - Mate Theme', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(135, 133, 128, 1574341960, 'Formular-Bestätigung', 'module/anwendungen/formular-bestaetigung', 'regular', 'Ihre Anfrage wurde abgesendet', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 55, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(136, 131, 128, 1553272043, 'Newsletter-Details', 'module/newsletter/newsletter-details', 'regular', '', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(137, 132, 128, 1553272043, 'FAQ-Details', 'module/faq/faq-details', 'regular', 'FAQ-Details', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(138, 92, 1024, 1553272043, 'Suche', 'module/suche', 'regular', 'Suche - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie eine Suche eingebunden werden kann.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(139, 90, 800, 1555067757, 'Kontakt', 'kontakt', 'regular', 'Kontakt - Mate Theme', '', 'index,follow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel einer Kontakt-Seite mit Anschrift und Kontaktformular.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 57, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', 'contact', 'map_default', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(140, 90, 64, 1538488861, '404 Seite nicht gefunden', '404-seite-nicht-gefunden', 'error_404', '404 Seite nicht gefunden', '', 'index,follow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', '', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(141, 90, 96, 1560845846, '403 Zugriff verweigert', '403-zugriff-verweigert', 'error_401', '403 Zugriff verweigert', '', 'index,follow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', '', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(144, 90, 848, 1553272043, 'Newsletter abonniert (Aktivierung)', 'newsletter-aktivierung', 'regular', '', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(145, 90, 872, 1553272043, 'Newsletter abbestellt (Deaktivierung)', 'newsletter-kuendigung', 'regular', '', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(148, 90, 836, 1553272043, 'Newsletter abonniert (Bestätigungsmail)', 'newsletter-abonniert', 'regular', '', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 55, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(150, 156, 512, 1555059538, 'ohne Schräge', 'layouts/headerbild-layouts/ohne-schräge', 'regular', '', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(156, 118, 24, 1555062174, 'Headerbild Layouts', 'layouts/headerbild-layouts', 'forward', '', '', 'noindex,nofollow', NULL, 'permanent', 157, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 56, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(157, 156, 256, 1555059314, 'Schräge nach links', 'layouts/headerbild-layouts/schräge-nach-links', 'regular', '', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(158, 156, 384, 1555059305, 'Schräge nach rechts', 'layouts/headerbild-layouts/schräge-nach-rechts', 'regular', '', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(159, 118, 64, 1555059520, 'Zweispaltiges Layout', 'layouts/zweispaltiges-layout', 'forward', '', '', 'noindex,nofollow', NULL, 'permanent', 120, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', 'map_never', '', '1', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(161, 118, 16, 1575631566, 'Layout mit geradem Header', 'layouts/layout-mit-geradem-header', 'regular', '', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 59, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(162, 118, 256, 1555061298, 'Elemente mit Schrägen', 'layouts/elemente-mit-schrägen', 'regular', '', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(164, 92, 1152, 1560781890, 'Modale Dialoge', 'module/modale-dialoge', 'regular', '', '', 'index,follow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', 'map_default', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); - -INSERT INTO `tl_theme` (`id`, `tstamp`, `name`, `author`, `folders`, `screenshot`, `templates`, `vars`, `pdir_th_short_code`, `pdir_th_license_domain`, `pdir_th_description`) VALUES(17, 1566205456, 'Odd Theme', 'pdir digital agentur // pdir GmbH / Juliane Langer, Philipp Seibt, Mathias Arzberger', NULL, NULL, '', 'a:0:{}', 'odd', '', '<b>pdir contao theme licence</b><br>\nMit dieser <b>Lizenz</b> gekennzeichnete Themes dürfen sowohl privat als auch kommerziell eingesetzt werden. Der Copyright-Link bzw. die Copyright-Links \"<i>ODD Theme by montequesto</i>\" dürfen nicht entfernt oder verändert werden. Das gilt auch wenn Sie das Theme\nnur als Basis für eine Website einsetzen und es verändern.\nMöchten Sie diesen Theme ohne Copyright-Link einsetzen, müssen Sie eine kostenpflichtige Lizenz erwerben.'); -COMMIT; - -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; diff --git a/src/templates/odd_theme_contao_demo_4.13.x_minimal_installtool.sql b/src/templates/odd_theme_contao_demo_4.13.x_minimal_installtool.sql deleted file mode 100644 index 5286eb4..0000000 --- a/src/templates/odd_theme_contao_demo_4.13.x_minimal_installtool.sql +++ /dev/null @@ -1,566 +0,0 @@ -SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; -SET AUTOCOMMIT = 0; -START TRANSACTION; -SET time_zone = "+00:00"; - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8mb4 */; - - -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(117, 91, 384, 1560848068, 'Slider', 'slider', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:23:\"slider fullwidth skw-br\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(118, 120, 64, 1554459150, 'Header', 'article-header', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-bl\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(119, 92, 128, 1511440816, 'Module', 'module', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(131, 101, 64, 1511440816, 'Slider', 'slider-19', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(132, 101, 128, 1511440816, 'Style Guide', 'style-guide', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(136, 107, 64, 1538489284, '02/01 Adressdaten', '02-01-adressdaten', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', 'ODD02/01'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(137, 107, 96, 1538489300, '02/02 Kontaktdaten', '02-02-kontaktdaten', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', 'ODD02/02'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(138, 107, 112, 1538489313, '02/03 Social Media Icons', '02-03-social-media-icons', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', 'ODD02/03'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(139, 107, 120, 1538489329, '02/04 Footer-Navigation', '02-04-footer-navigation', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', 'ODD02/04'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(140, 107, 124, 1538489341, '02/05 Copyright-Hinweis', '02-05-copyright-hinweis', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', 'ODD02/05'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(145, 106, 512, 1538489196, '01/01 Logo', '01-01-logo', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', 'ODD01/01'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(153, 113, 128, 1511440816, 'Textelemente', 'inhaltselemente-textelemente', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(154, 114, 128, 1511440816, 'Akkordion', 'inhaltselemente-akkordion', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(156, 116, 128, 1511440816, 'Media-Elemente', 'inhaltselemente-media-elemente', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(159, 120, 128, 1511440816, 'Layout mit linker Spalte', 'layouts-layout-mit-linker-spalte', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(160, 121, 128, 1511440816, 'Layout mit rechter Spalte', 'layouts-layout-mit-rechter-spalte', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(161, 122, 128, 1511441564, 'Layout mit linker und rechter Spalte', 'layouts-layout-mit-linker-und-rechter-spalte', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(165, 124, 128, 1511442061, 'Einspaltiges Layout', 'layouts-einspaltiges-layout', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(169, 127, 128, 1553878908, 'Weitere ODD Elemente', 'odd-elemente', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(170, 121, 64, 1555059636, 'Header', 'article-header-170', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-bl\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(171, 128, 128, 1511528829, 'Download-Elemente', 'style-guide-download-elemente', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(172, 129, 128, 1511529951, 'Navigation', 'module-navigation', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(173, 130, 128, 1511529962, 'User', 'module-user', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(176, 133, 128, 1511530050, 'Anwendungen', 'module-anwendungen', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(177, 134, 128, 1511532246, 'Impressum', 'impressum', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(178, 135, 128, 1511778176, 'Formular-Bestätigung', 'module-anwendungen-formular-bestaetigung', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(181, 138, 128, 1511953599, 'Suche', 'module-suche', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(182, 106, 640, 1538489223, '01/02 Top Navbar', '01-02-top-navbar', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', 'ODD01/02'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(184, 139, 128, 1555067798, 'Kontaktformular', 'kontakt', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(185, 140, 128, 1516628462, '404 Seite nicht gefunden', '404-seite-nicht-gefunden', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(186, 141, 128, 1516628325, '403 Zugriff verweigert', '403-zugriff-verweigert', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(193, 122, 32, 1539349600, 'Header', 'article-header-193', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-bl\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(194, 124, 64, 1539349619, 'Header', 'article-header-194', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-bl\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(197, 91, 512, 1552643358, 'Intro', 'intro', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(198, 91, 640, 1637664098, 'News', 'news', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:24:\"primary-bg skw-tr skw-br\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(199, 91, 768, 1540212382, 'Teaserbox', 'teaserbox', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(209, 91, 896, 1540221815, 'Contentbox', 'contentbox', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(210, 91, 1024, 1552645291, 'Abschlusstext', 'abschlusstext', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(214, 91, 960, 1553870655, 'Preistabelle', 'preistabelle', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(215, 91, 832, 1553873058, 'Trenner', 'trenner', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(216, 91, 928, 1553873086, 'Trenner', 'trenner-216', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(220, 150, 64, 1554459178, 'Header', 'article-header-220', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(228, 157, 256, 1555328537, 'Header', 'article-header-228', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-bl\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(229, 157, 384, 1555060468, 'Schräge nach links', 'schräge-nach-links', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(230, 158, 256, 1555060311, 'Header', 'article-header-230', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-br\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(231, 158, 384, 1555060458, 'Schräge nach rechts', 'schräge-nach-rechts', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(232, 150, 192, 1555060446, 'ohne Schräge', 'ohne-schräge', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(234, 161, 256, 1555060909, 'Header', 'article-header-234', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-bl\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(235, 161, 384, 1575631587, 'Layout mit geradem Header', 'layout-mit-geradem-header', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(236, 122, 256, 1555061099, 'Rechte Spalte', 'rechte-spalte', 1, 'right', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(237, 162, 128, 1555061650, 'Text', 'text', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(238, 162, 64, 1555061378, 'Header', 'article-header-238', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-br\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(239, 162, 256, 1555061489, 'Schräge / oben rechts / unten rechts', 'schräge-oben-rechts-unten-rechts', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:24:\"primary-bg skw-tr skw-br\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(240, 162, 384, 1555061664, 'Text', 'text-240', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(241, 162, 512, 1555061700, 'Schräge / oben links / unten links', 'schräge-oben-links-unten-links', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:24:\"primary-bg skw-tl skw-bl\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(242, 162, 640, 1555061890, 'Text', 'text-242', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(243, 162, 768, 1555061781, 'Schräge / oben links / unten rechts', 'schräge-oben-links-unten-rechts', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:24:\"primary-bg skw-tl skw-br\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(244, 162, 896, 1555061898, 'Text', 'text-244', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(245, 162, 1024, 1555061840, 'Schräge / oben rechts / unten links', 'schräge-oben-rechts-unten-links', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:24:\"primary-bg skw-tr skw-bl\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(246, 162, 1152, 1555061883, 'Text', 'text-246', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(247, 162, 1280, 1555062292, 'Schräge / oben rechts', 'schräge-oben-rechts', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:17:\"primary-bg skw-tr\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(248, 162, 1408, 1555063442, 'Text', 'text-248', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(251, 139, 256, 1555067790, 'Kontaktdaten', 'kontaktdaten', 1, 'right', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(252, 139, 64, 1555068566, 'Header', 'article-header-252', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-br\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(253, 115, 256, 1560511469, 'Slider', 'slider-2', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:23:\"slider fullwidth skw-br\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(255, 164, 128, 1560781890, 'Modale Dialoge', 'module-modale-dialoge', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); - -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(381, 131, 'tl_article', 272, 1488455906, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:52:\"einfaches Bild mit Überschrift und Bildunterschrift\";}', NULL, '', '1', 0x512b86c6ff2011e6ba9f408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', 'mit Klasse \"smaller\" würde das Bild nur 400px hoch sein', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_header', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(382, 153, 'tl_article', 384, 1511280898, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

h1-Überschrift

\n

h2-Überschrift

\n

h3-Überschrift

\n

h4-Überschrift

\n
h5-Überschrift
\n
h6-Überschrift
', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(399, 12, 'tl_news', 128, 1552650130, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Das Kasernengelände in Meißen-Bohnitzsch wurde 1936 angelegt und wurde ab Mai 1945 von der Sowjetunion genutzt. Unter anderem war das 7. Garde-Panzerregiment der GSSD hier untergebracht.

', '', '', 0x6c880b87002611e88700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"300\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '', '', 'left', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(400, 153, 'tl_article', 576, 1539351368, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:89:\"Eine Überschrift mit der Klasse \"bordered-heading\" ist linksbündig und mit Unterstrich\";}', '

Eine Überschrift mit der Klasse \"bordered-heading\"
ist linksbündig und mit Unterstrich

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(401, 153, 'tl_article', 612, 1539351363, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:104:\"Eine Überschrift mit den Klassen \"bordered-heading text-sm-right\" ist rechtsbündig und mit Unterstrich\";}', '

Eine Überschrift mit den Klassen \"bordered-heading right\" ist rechtsbündig und mit Unterstrich

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-sm-right', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(402, 153, 'tl_article', 672, 1539351599, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

[class .col-12 .col-md-6] Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(403, 153, 'tl_article', 720, 1539351609, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

[class .col-12 .col-md-6] Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(404, 153, 'tl_article', 756, 1511282466, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(407, 118, 'tl_article', 128, 1554458686, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:24:\"Layout mit linker Spalte\";}', NULL, '', '', 0xc942253a467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', 'sdsds', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(460, 153, 'tl_article', 768, 1511280660, 'list', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:17:\"nummerierte Liste\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, 'ordered', 0x613a343a7b693a303b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a313b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a323b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a333b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b7d, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(461, 153, 'tl_article', 896, 1511280653, 'list', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:19:\"unnummerierte Liste\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, 'unordered', 0x613a343a7b693a303b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a313b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a323b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a333b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b7d, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(462, 132, 'tl_article', 384, 1511280957, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:11:\"Style Guide\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(463, 153, 'tl_article', 192, 1553878794, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:12:\"Textelemente\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(467, 153, 'tl_article', 1024, 1511284040, 'hyperlink', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:4:\"Link\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '{{link_url::90}}', '', '', 'Normaler Link', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '1', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(468, 153, 'tl_article', 1152, 1511284059, 'toplink', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', 'Top-Link', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '1', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(471, 154, 'tl_article', 128, 1552651351, 'accordionStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', 'Stadterkunden in Meißen auf eine ganz besondere Art', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(472, 154, 'tl_article', 256, 1552651360, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(473, 154, 'tl_article', 384, 1511284664, 'accordionStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(474, 154, 'tl_article', 512, 1552651391, 'accordionStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', 'Erinnerungen', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(475, 154, 'tl_article', 640, 1552651371, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(476, 154, 'tl_article', 768, 1511284674, 'accordionStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(477, 154, 'tl_article', 896, 1552651399, 'accordionStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', 'Botschaften aus der Vergangenheit', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(478, 154, 'tl_article', 1024, 1552651380, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(479, 154, 'tl_article', 1152, 1511284683, 'accordionStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(480, 154, 'tl_article', 64, 1553878812, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:9:\"Akkordion\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(504, 156, 'tl_article', 128, 1553878872, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:14:\"Media-Elemente\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(506, 156, 'tl_article', 512, 1554464836, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Dreispaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"510\";i:1;s:3:\"300\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a363a7b693a303b733a31363a22c09740c7467611e9a91c408d5c22fa41223b693a313b733a31363a22c433b88f467611e9a91c408d5c22fa41223b693a323b733a31363a22b92fb24e467611e9a91c408d5c22fa41223b693a333b733a31363a22c942253a467611e9a91c408d5c22fa41223b693a343b733a31363a22d285349b467611e9a91c408d5c22fa41223b693a353b733a31363a22c416cb81467611e9a91c408d5c22fa41223b7d, 0x613a363a7b693a303b733a31363a22c09740c7467611e9a91c408d5c22fa41223b693a313b733a31363a22c433b88f467611e9a91c408d5c22fa41223b693a323b733a31363a22b92fb24e467611e9a91c408d5c22fa41223b693a333b733a31363a22c942253a467611e9a91c408d5c22fa41223b693a343b733a31363a22d285349b467611e9a91c408d5c22fa41223b693a353b733a31363a22c416cb81467611e9a91c408d5c22fa41223b7d, '', 3, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(507, 156, 'tl_article', 1792, 1555056806, 'youtube', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, 'mfo0iHDrBN8', '', NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(509, 156, 'tl_article', 256, 1539353264, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:24:\"Galerie (Contao)\";}', '

Die Anordnung der Bilder passt sich je nachdem wie viele Spalten ausgewählt sind automatisch an.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(556, 169, 'tl_article', 128, 1553878919, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:20:\"Weitere ODD-Elemente\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(564, 169, 'tl_article', 256, 1516980271, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:11:\"Content Box\";}', '

Die Content Box lässt sich über das Inhaltselement mateContentBox an jeder beliebigen Stelle platzieren. Es kann eine Überschrift, ein Text sowie ein Link/Linktext angegeben werden. Breite und Farben der Boxen werden durch das Vergeben von CSS-Klassen bzw. über die CSS-Datei angepasst.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(565, 169, 'tl_article', 640, 1516980281, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:9:\"Teaserbox\";}', '

Die[nbsp]Teaserbox lässt sich über das Inhaltselement mateTeaserBox an jeder beliebigen Stelle platzieren. Es kann ein Bild, eine Überschrift, ein Text sowie ein Link/Linktext angegeben werden. Die Breite der Boxen[nbsp]kann durch das Vergeben von CSS-Klassen angepasst werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(567, 170, 'tl_article', 128, 1552650880, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:25:\"Layout mit rechter Spalte\";}', NULL, '', '', 0xc09740c7467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(571, 153, 'tl_article', 1408, 1539352121, 'table', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:30:\"Tabelle mit Elementtyp Tabelle\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, 0x613a353a7b693a303b613a333a7b693a303b733a363a22486561642031223b693a313b733a363a22486561642032223b693a323b733a363a22486561642033223b7d693a313b613a333a7b693a303b733a383a22436f6c756d6e2031223b693a313b733a383a22436f6c756d6e2032223b693a323b733a383a22436f6c756d6e2033223b7d693a323b613a333a7b693a303b733a383a22436f6c756d6e2031223b693a313b733a383a22436f6c756d6e2032223b693a323b733a383a22436f6c756d6e2033223b7d693a333b613a333a7b693a303b733a383a22436f6c756d6e2031223b693a313b733a383a22436f6c756d6e2032223b693a323b733a383a22436f6c756d6e2033223b7d693a343b613a333a7b693a303b733a383a22436f6c756d6e2031223b693a313b733a383a22436f6c756d6e2032223b693a323b733a383a22436f6c756d6e2033223b7d7d, '', '1', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(572, 153, 'tl_article', 1536, 1511528123, 'code', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:4:\"Code\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', 'JavaScript', '', '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(573, 153, 'tl_article', 1664, 1511528199, 'markdown', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', '## Markdown\n\nSince Contao 3.3.x Contao ships with the markdown content element. \n\n##### What is Markdown?\n\n> Markdown is a markup language with plain text formatting syntax designed so that it can be converted to HTML and many other formats using a tool by the same name.', '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:8:\"markdown\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(574, 171, 'tl_article', 128, 1553878882, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:17:\"Download-Elemente\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(575, 171, 'tl_article', 256, 1552651865, 'download', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, '', '', 0xb0ad636c467611e9a91c408d5c22fa41, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', 'Einzelnes Download-Element', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '1', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(576, 171, 'tl_article', 384, 1552651907, 'downloads', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:9:\"Downloads\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a363a7b693a303b733a31363a22bd8cb98b467611e9a91c408d5c22fa41223b693a313b733a31363a22d285349b467611e9a91c408d5c22fa41223b693a323b733a31363a22c416cb81467611e9a91c408d5c22fa41223b693a333b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b7d, 0x613a363a7b693a303b733a31363a22bd8cb98b467611e9a91c408d5c22fa41223b693a313b733a31363a22d285349b467611e9a91c408d5c22fa41223b693a323b733a31363a22c416cb81467611e9a91c408d5c22fa41223b693a333b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b7d, '', 4, 0, 0, 'custom', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(580, 172, 'tl_article', 128, 1553877182, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:10:\"Navigation\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(589, 173, 'tl_article', 128, 1553877192, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:4:\"User\";}', '

Test-Zugangsdaten:

\n

User: mate-user
Passwort: mate theme

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(590, 173, 'tl_article', 256, 1539335021, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 403, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(592, 173, 'tl_article', 384, 1539335052, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 407, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(595, 173, 'tl_article', 304, 1539335029, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 404, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(596, 173, 'tl_article', 312, 1539335038, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 405, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(597, 173, 'tl_article', 316, 1539335046, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 406, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(599, 173, 'tl_article', 192, 1516703706, 'text', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:17:\"Test-Zugangsdaten\";}', '

Username: j.smith
Password: johnsmith

\n

Username: d.evans
Password: donnaevans

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(600, 177, 'tl_article', 128, 1525853618, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:9:\"Impressum\";}', '

Verantwortlicher Diensteanbieter im Sinne von § 5 Telemediengesetz (TMG),

\n

Inhaber der Domain www.example-domain.de

\n

Firma
Musterstraße 12
00000 Musterhausen

\n

Telefon: +49 (0)1234 / 5678910
E-Mail: info@example.de

\n

[nbsp]

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(601, 176, 'tl_article', 128, 1553877228, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:11:\"Anwendungen\";}', '

Für das, wie in den folgenden Formularen, dargestellte Upload-Feld, muss das Template form_mate_upload im Formulargenerator bei dem jeweiligen Element ausgewählt werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(602, 176, 'tl_article', 256, 1539346665, 'form', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:30:\"Formular (tabellenlos)\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 6, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(604, 178, 'tl_article', 128, 1511778265, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:30:\"Ihre Anfrage wurde übertragen\";}', '

Ihre Anfrage wurde erfolgreich versendet und wir werden uns in Kürze mit Ihnen in Verbindung setzen.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(616, 181, 'tl_article', 128, 1539347874, 'module', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 415, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(617, 181, 'tl_article', 64, 1553877236, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:5:\"Suche\";}', '

Im Suchmaschinen-Modul muss das Template search_mate ausgewählt werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(639, 172, 'tl_article', 224, 1539334631, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:22:\"Unterseiten-Navigation\";}', '

Navigations-Modul mit der Klasse subnav

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(654, 153, 'tl_article', 648, 1540221151, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(655, 153, 'tl_article', 726, 1540221157, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(662, 186, 'tl_article', 128, 1516628515, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:24:\"403 - Zugriff verweigert\";}', '

Auf die von Ihnen angeforderte Seite haben Sie leider keinen Zugriff.

\n

Sie könnten stattdessen zur Startseite navigieren oder uns kontaktieren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(663, 185, 'tl_article', 128, 1516628505, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:26:\"404 - Seite nicht gefunden\";}', '

Die von Ihnen angeforderte Seite wurde leider nicht gefunden. Vielleicht haben Sie sich vertippt oder die Seite existiert nicht mehr.

\n

Sie könnten stattdessen zur Startseite navigieren oder uns kontaktieren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(664, 156, 'tl_article', 1664, 1516980207, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"YouTube\";}', '

Damit sich das Video auch auf verschiedenen Endgeräten responsiv verhält, muss bei dem Elementtyp YouTube das Template ce_youtube_mate ausgewählt werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(680, 22, 'tl_calendar_events', 128, 1552650379, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(681, 23, 'tl_calendar_events', 128, 1552650346, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(682, 24, 'tl_calendar_events', 128, 1552650363, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Dieses Wohnhaus im Stil der Renaissance entstand um 1580.

', '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(684, 26, 'tl_calendar_events', 128, 1552650329, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', 0xd5b2a583028211e88700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"400\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(688, 10, 'tl_news', 128, 1552650042, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Dieses Wohnhaus im Stil der Renaissance entstand um 1580. Noch heute sind aus dieser Zeit zahlreiche Schmuckelemente am Haus erhalten: Tür- und Fenstergewände, Konsolsteine und Deckengewölbe.

', '', '', 0xde74085cfd2011e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"500\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:2:\"15\";s:4:\"unit\";s:2:\"px\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(689, 11, 'tl_news', 128, 1552650025, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', '', '', 0xa09827bfcb5d11e79a22408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:1:\"0\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:2:\"15\";s:4:\"unit\";s:2:\"px\";}', '', '', '', 'left', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(701, 27, 'tl_calendar_events', 128, 1552650410, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet.

', '', '', 0xd05728a0028211e88700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"500\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '', '', 'left', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(702, 28, 'tl_calendar_events', 128, 1552650395, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"300\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:2:\"15\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(706, 23, 'tl_news', 32, 1552650056, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Die Ziegelei am Roten Haus war die letzte ihrer Art in Meißen, sie war nach fast 140 Jahren Produktion 1993 geschlossen worden.

', '', '', 0xa09827bfcb5d11e79a22408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:1:\"0\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:2:\"15\";s:4:\"unit\";s:2:\"px\";}', '', '', '', 'left', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(707, 24, 'tl_news', 128, 1552650073, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Das ehemalige Landkrankenhaus ist seit dem Neubau der Elblandklinik in Meißen-Bohnitzsch ungenutzt.

', '', '', 0x7009c414028811e88700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"700\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:2:\"30\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(708, 25, 'tl_news', 32, 1552650084, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Zum \"Elbdom\"-Areal gehörte in den letzten 20 Jahren auch das Grundstück der Unternehmerfamilie Clemens Kurtz in der Dresdner Straße 19.

', '', '', 0xbeaf67b1028211e88700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"400\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:1:\"0\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '', '', 'left', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(709, 26, 'tl_news', 128, 1552650101, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(721, 159, 'tl_article', 128, 1552650587, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe.[nbsp]929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(726, 159, 'tl_article', 256, 1552650787, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(743, 159, 'tl_article', 384, 1540220710, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(744, 159, 'tl_article', 1024, 1540220716, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(745, 159, 'tl_article', 512, 1552650706, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(746, 159, 'tl_article', 640, 1552650714, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(747, 159, 'tl_article', 768, 1552650650, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(748, 159, 'tl_article', 896, 1552650692, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(749, 159, 'tl_article', 320, 1552650561, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(783, 193, 'tl_article', 128, 1555060980, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:20:\"Dreispaltiges Layout\";}', NULL, '', '', 0xae24b6cc467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(784, 194, 'tl_article', 128, 1553878074, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:19:\"Einspaltiges Layout\";}', NULL, '', '', 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(792, 184, 'tl_article', 124, 1555068392, 'form', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 8, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(797, 251, 'tl_article', 128, 1555069654, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:12:\"Kontaktdaten\";}', '

Mustermann GmbH
Musterstraße 12
00000 Musterhausen

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(803, 184, 'tl_article', 64, 1555068611, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:30:\"Bleiben Sie mit uns in Kontakt\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(807, 153, 'tl_article', 1280, 1517820154, 'hyperlink', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '#', '', '', 'Button', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"btn\";}', '', '', '', '', '', NULL, '1', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(810, 145, 'tl_article', 128, 1644834392, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, '', '1', 0xc96d0cf7472811e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"25\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '{{link_url::90|urlattr}}', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(812, 182, 'tl_article', 256, 1553852915, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

info@example.org

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:5:\"email\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', NULL, 'far fa-envelope', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(813, 182, 'tl_article', 384, 1540216548, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:12:\"social-media\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(814, 182, 'tl_article', 512, 1540216554, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(815, 182, 'tl_article', 448, 1540306869, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Facebook

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', 'https://www.facebook.com/', 'fab fa-facebook-f', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(816, 182, 'tl_article', 480, 1540306883, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Twitter

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', 'https://twitter.com/', 'fab fa-twitter', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(817, 182, 'tl_article', 496, 1540306897, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Instagram

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', 'https://www.instagram.com/', 'fab fa-instagram', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(818, 182, 'tl_article', 504, 1540306925, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Pinterest

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', 'https://www.pinterest.de/', 'fab fa-pinterest-p', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(819, 182, 'tl_article', 508, 1540306943, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Linked In

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', 'https://de.linkedin.com/', 'fab fa-linkedin-in', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(820, 136, 'tl_article', 128, 1538490759, 'text', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Adressdaten\";}', '

Musterfirma GmbH
Musterstraße 127
01234 Musterstadt

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(821, 137, 'tl_article', 128, 1553270517, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

+ 49 (0) 0123 4567890

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-phone', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(822, 137, 'tl_article', 256, 1540216645, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

+ 49 (0) 0123 456789

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-mobile', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(823, 137, 'tl_article', 384, 1540216655, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

+ 49 (0) 0123 4567891

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-fax', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(824, 137, 'tl_article', 512, 1540563691, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

info@example.org

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'far fa-envelope', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(825, 137, 'tl_article', 64, 1538491017, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:12:\"Kontaktdaten\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(826, 138, 'tl_article', 128, 1540307110, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Facebook

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-facebook-f', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(827, 138, 'tl_article', 256, 1540307120, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Twitter

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-twitter', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(828, 138, 'tl_article', 384, 1540307160, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Instagram

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-instagram', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(829, 138, 'tl_article', 512, 1540307177, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Pinterest

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-pinterest-p', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(830, 138, 'tl_article', 640, 1540307187, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Linked In

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-linkedin-in', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(831, 138, 'tl_article', 64, 1538491124, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:12:\"Social Media\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(832, 139, 'tl_article', 128, 1538491199, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:9:\"Odd Theme\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(833, 139, 'tl_article', 256, 1538491192, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 373, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(834, 140, 'tl_article', 128, 1560846799, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

© Firma / {{date::Y}} / Odd Theme by montequesto

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(838, 117, 'tl_article', 128, 1553851804, 'sliderStart', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '1', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(839, 117, 'tl_article', 256, 1539088811, 'sliderStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(840, 117, 'tl_article', 192, 1552657173, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Dank der Saalkapazitäten fanden in dem traditionsreichen Haus zahlreiche Großveranstaltungen statt. Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '1', '', 0xc942253a467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Kultur & Freizeit', 'Mehr dazu', '{{event_url::26}}', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(841, 117, 'tl_article', 224, 1552657262, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Keramikfabrik\";}', '

Bei der Produktion von Kachelöfen, Wandplatten, Porzellanen und Schamotte war Meißen um 1900 führend in Deutschland. Die für Kachelöfen entwickelte Meißner Patentkachel war wohl in den meisten deutschen Wohnzimmern zu finden.

', '1', '', 0xae24b6cc467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Industrie', 'Mehr dazu', '{{link_url::120}}', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(842, 117, 'tl_article', 208, 1552657181, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '1', '', 0xc416cb81467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Sport', 'Mehr erfahren', '{{event_url::27}}', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(843, 117, 'tl_article', 248, 1552657268, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:29:\"E-Werk in der Brauhausstraße\";}', '

Das ehemalige Elektrizitätswerk an der Brauhausstraße ging 1911 in Betrieb und lieferte Strom für die Meißner Innenstadt. Nach 1990 wurde das E-Werk stillgelegt und 2004 wurde das Kesselhaus im hinteren Grundstücksbereich abgerissen.

', '1', '', 0xb92fb24e467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Industrie', 'Weiterlesen', '{{link_url::121}}', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(844, 117, 'tl_article', 216, 1552657188, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:21:\"Kaserne in Bohnitzsch\";}', '

Das Kasernengelände in Meißen-Bohnitzsch wurde 1936 angelegt und wurde ab Mai 1945 von der Sowjetunion genutzt. Unter anderem war das 7. Garde-Panzerregiment der GSSD hier untergebracht.

', '1', '', 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Militär', 'Mehr dazu', '{{news_url::12}}', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(845, 197, 'tl_article', 128, 1552643659, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:28:\"bordered-heading text-center\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(846, 197, 'tl_article', 256, 1540220465, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(847, 197, 'tl_article', 384, 1540220471, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(848, 197, 'tl_article', 320, 1552644010, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(849, 197, 'tl_article', 352, 1552643989, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(850, 198, 'tl_article', 128, 1645107145, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Diese Räumlichkeiten sind Zeitdokumente. Ihre Ablichtung vielleicht die letzte vor dem endgültigen Abriss oder vor einer Sanierung, die alle Spuren der Vergangenheit verwischen werden. Sie wurden sorgfältig dokumentiert, ohne am Ort etwas zu verändern. Da die Fotografien grundsätzlich im - oft sehr spärlichen - natürlichen Licht vor Ort aufgenommen wurden, kam meist die HDR-Technik zum Einsatz, die

\n

Abbildungen mit hocher Farbintensität und fast malerischem Flair hervorbringt. Die Bilder entstanden im Einverständnis der jeweiligen Grundstückseigentümer.
Der Autor dankt allen, die ihm den Besuch dieser verlassenen Orte ermöglichten und der Veröffentlichung der dort entstandenen Aufnahmen zustimmten.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(851, 199, 'tl_article', 128, 1540215730, 'ct_wrapperStart', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Platzhalter für Teaserboxen

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(853, 199, 'tl_article', 256, 1540215704, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(855, 199, 'tl_article', 224, 1554457312, 'ct_teaserBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:22:\"Ziegelei am Roten Haus\";}', '

Die Spezialität der Ziegelei war zu DDR-Zeiten die Herstellung von Hochlochziegeln - leichten, großformatigen Ziegeln für den Wohnungsbau.

', '1', '', 0xc433b88f467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'Mehr dazu', '{{news_url::23}}', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-4', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(856, 199, 'tl_article', 240, 1554457318, 'ct_teaserBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '1', '', 0xb0ad636c467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'Mehr dazu', '{{event_url::28}}', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-4', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(859, 198, 'tl_article', 64, 1552662465, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:9:\"Aktuelles\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-center', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(863, 172, 'tl_article', 352, 1539334592, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 384, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(876, 153, 'tl_article', 630, 1553879193, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:101:\"Eine Überschrift mit den Klassen \"bordered-heading text-sm-center\" ist zentriert und mit Unterstrich\";}', '

Eine Überschrift mit den Klassen \"bordered-heading right\" ist rechtsbündig und mit Unterstrich

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-sm-center', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(877, 153, 'tl_article', 1472, 1539352288, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:27:\"Tabelle mit Elementtyp Text\";}', '\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Column 1Column 2Column 3
Column 1Column 2Column 3
Column 1Column 2Column 3
Verbundene Zeilen
', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(885, 209, 'tl_article', 256, 1554457368, 'ct_contentBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Dank der Saalkapazitäten fanden in dem traditionsreichen Haus zahlreiche Großveranstaltungen statt. Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-3\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr dazu', '{{event_url::26}}', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(886, 209, 'tl_article', 128, 1540222509, 'ct_wrapperStart', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Platzhalter für Teaserboxen

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"row no-margin\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit der Klasse \'row\'', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(887, 209, 'tl_article', 640, 1540215843, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(889, 199, 'tl_article', 160, 1554457306, 'ct_teaserBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:19:\"Das Landkrankenhaus\";}', '

Das ehemalige Landkrankenhaus ist seit dem Neubau der Elblandklinik in Meißen-Bohnitzsch ungenutzt.

', '1', '', 0xce7c80c2467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'Mehr dazu', '{{news_url::24}}', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(890, 209, 'tl_article', 384, 1552652907, 'ct_contentBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Keramikfabrik\";}', '

Bei der Produktion von Kachelöfen, Wandplatten, Porzellanen und Schamotte war Meißen um 1900 führend in Deutschland. Die für Kachelöfen entwickelte Meißner Patentkachel war wohl in den meisten deutschen Wohnzimmern zu finden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-3\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr dazu', '{{link_url::120}}', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(892, 182, 'tl_article', 64, 1553852907, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

+ 49 (0) 123 45678

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:5:\"phone\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', NULL, 'fas fa-phone', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(893, 169, 'tl_article', 768, 1553879082, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:22:\"Preis-Tabelle 3 stufig\";}', '

Beispiel 1:

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(894, 169, 'tl_article', 896, 1540307443, 'ct_priceBox', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"Paket A\";}', '

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', 'Mehr Infos', '{{link_url::90}}', 'Jetzt bestellen', '{{link_url::90}}', 'pro Monat, zzgl. MwSt.', '99,99 €', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(895, 169, 'tl_article', 832, 1540301947, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"row no-margin\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(896, 169, 'tl_article', 1024, 1540217731, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(897, 169, 'tl_article', 960, 1540307450, 'ct_priceBox', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"Paket B\";}', '

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', 'Am beliebtesten', 'Mehr Infos', '90', 'Jetzt bestellen', '90', 'pro Monat, zzgl. MwSt.', '249,99 €', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(898, 169, 'tl_article', 992, 1540219169, 'ct_priceBox', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"Paket C\";}', '

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', 'Mehr Infos', '90', 'Jetzt bestellen', '90', 'pro Monat, zzgl. MwSt.', '49,99 €', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(899, 169, 'tl_article', 1152, 1540219594, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:19:\"Einfache Inhaltsbox\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(900, 169, 'tl_article', 1280, 1552652309, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:24:\"Stadterkunden in Meißen\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(901, 169, 'tl_article', 1216, 1540219647, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(902, 169, 'tl_article', 1408, 1540219653, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(903, 169, 'tl_article', 1344, 1552652333, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:12:\"Erinnerungen\";}', '

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(904, 169, 'tl_article', 704, 1540219734, 'ct_wrapperStart', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Platzhalter für Teaserboxen

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(905, 169, 'tl_article', 736, 1552652219, 'ct_teaserBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:19:\"Wohnhaus Rosengasse\";}', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', '1', '', 0xb81fbc97467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'Mehr dazu', '90', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(906, 169, 'tl_article', 752, 1552652238, 'ct_teaserBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Keramikfabrik\";}', '

Bei der Produktion von Kachelöfen, Wandplatten, Porzellanen und Schamotte war Meißen um 1900 führend in Deutschland. Die für Kachelöfen entwickelte Meißner Patentkachel war wohl in den meisten deutschen Wohnzimmern zu finden.

', '1', '', 0xae24b6cc467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'Mehr dazu', '90', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-4', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(907, 169, 'tl_article', 760, 1552652257, 'ct_teaserBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '1', '', 0xc416cb81467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'Mehr dazu', '90', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-4', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(908, 169, 'tl_article', 764, 1540219734, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(909, 169, 'tl_article', 448, 1540219772, 'ct_wrapperStart', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie)', '

Platzhalter für Teaserboxen

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit der Klasse \'row\'', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(910, 169, 'tl_article', 544, 1552652156, 'ct_contentBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr dazu', '90', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(911, 169, 'tl_article', 592, 1552652166, 'ct_contentBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Keramikfabrik\";}', '

Bei der Produktion von Kachelöfen, Wandplatten, Porzellanen und Schamotte war Meißen um 1900 führend in Deutschland. Die für Kachelöfen entwickelte Meißner Patentkachel war wohl in den meisten deutschen Wohnzimmern zu finden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr dazu', '90', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(912, 169, 'tl_article', 616, 1552652180, 'ct_contentBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:19:\"Wohnhaus Rosengasse\";}', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr dazu', '90', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(913, 169, 'tl_article', 628, 1540219772, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(914, 209, 'tl_article', 512, 1554457380, 'ct_contentBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:19:\"Wohnhaus Rosengasse\";}', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-3\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr erfahren', '{{news_url::11}}', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(915, 209, 'tl_article', 352, 1552652897, 'ct_contentBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-3\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr dazu', '{{event_url::27}}', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(917, 169, 'tl_article', 1088, 1553879106, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:21:\"Preistabelle 2 stufig\";}', '

Beispiel 1:

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(918, 169, 'tl_article', 1120, 1540301976, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"row no-margin\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(919, 169, 'tl_article', 1136, 1540302061, 'ct_priceBox', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"Paket A\";}', '

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-6\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', 'Mehr Infos', '90', 'Jetzt bestellen', '90', 'pro Monat, zzgl. MwSt.', '99,99 €', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(920, 169, 'tl_article', 1144, 1540302044, 'ct_priceBox', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"Paket B\";}', '

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-6\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', 'Mehr Infos', '90', 'Jetzt bestellen', '90', 'pro Monat, zzgl. MwSt.', '249,99 €', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(922, 169, 'tl_article', 1150, 1540301976, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(927, 210, 'tl_article', 256, 1540306574, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(928, 210, 'tl_article', 320, 1553869218, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Diese Räumlichkeiten sind Zeitdokumente. Ihre Ablichtung vielleicht die letzte vor dem endgültigen Abriss oder vor einer Sanierung, die alle Spuren der Vergangenheit verwischen werden. Sie wurden sorgfältig dokumentiert, ohne am Ort etwas zu verändern. Da die Fotografien grundsätzlich im - oft sehr spärlichen - natürlichen Licht vor Ort aufgenommen wurden, kam meist die HDR-Technik zum Einsatz, die

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(929, 210, 'tl_article', 352, 1553869224, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Abbildungen mit hocher Farbintensität und fast malerischem Flair hervorbringt. Die Bilder entstanden im Einverständnis der jeweiligen Grundstückseigentümer.
Der Autor dankt allen, die ihm den Besuch dieser verlassenen Orte ermöglichten und der Veröffentlichung der dort entstandenen Aufnahmen zustimmten.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(930, 210, 'tl_article', 384, 1540306574, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(931, 117, 'tl_article', 252, 1552657274, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"VEB Ziegelwerk Rotes Haus\";}', '

Die Ziegelei am Roten Haus war die letzte ihrer Art in Meißen, sie war nach fast 140 Jahren Produktion 1993 geschlossen worden.

', '1', '', 0xc09740c7467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Industrie', 'Weiterlesen', '{{news_url::23}}', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(933, 210, 'tl_article', 512, 1553875181, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:5:\"quote\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(934, 160, 'tl_article', 128, 1552650990, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe.[nbsp]929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(935, 160, 'tl_article', 256, 1552650983, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(936, 160, 'tl_article', 384, 1552650995, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(937, 160, 'tl_article', 512, 1552650983, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(938, 160, 'tl_article', 640, 1552651001, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(939, 160, 'tl_article', 768, 1552651007, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(940, 160, 'tl_article', 896, 1552651013, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(941, 160, 'tl_article', 1024, 1552651018, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(942, 160, 'tl_article', 1152, 1552650983, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(945, 161, 'tl_article', 128, 1552651039, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe.[nbsp]929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(946, 161, 'tl_article', 256, 1552651034, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(947, 161, 'tl_article', 384, 1552651047, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(948, 161, 'tl_article', 512, 1552651034, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(949, 161, 'tl_article', 640, 1552651092, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(950, 161, 'tl_article', 768, 1552651098, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(951, 161, 'tl_article', 896, 1552651105, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(952, 161, 'tl_article', 1024, 1552651111, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(953, 161, 'tl_article', 1152, 1552651034, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(954, 161, 'tl_article', 1280, 1552651122, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Letzte Blogeinträge\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(955, 161, 'tl_article', 1408, 1552651034, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(956, 165, 'tl_article', 128, 1552651144, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe.[nbsp]929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(957, 165, 'tl_article', 256, 1552651140, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(958, 165, 'tl_article', 384, 1552651150, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(959, 165, 'tl_article', 512, 1552651140, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(960, 165, 'tl_article', 640, 1552651155, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(961, 165, 'tl_article', 768, 1552651161, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(962, 165, 'tl_article', 896, 1552651166, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(963, 165, 'tl_article', 1024, 1552651172, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(964, 165, 'tl_article', 1152, 1552651140, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(978, 156, 'tl_article', 640, 1554464808, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Vierspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a343a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b7d, 0x613a343a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b7d, '', 4, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(986, 169, 'tl_article', 1536, 1552653271, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-home', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(987, 169, 'tl_article', 1664, 1552653413, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-check', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(988, 169, 'tl_article', 1472, 1552653438, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:14:\"Text mit Icons\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(989, 199, 'tl_article', 64, 1553867230, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:14:\"Die Highlights\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:28:\"bordered-heading text-center\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(990, 210, 'tl_article', 128, 1553877648, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:28:\"bordered-heading text-center\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(991, 210, 'tl_article', 640, 1553868952, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Alle Fotos © Claus-Dirk Langer, Dresden/Meißen

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(998, 214, 'tl_article', 64, 1553870516, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"row no-margin\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(999, 214, 'tl_article', 116, 1553873824, 'ct_priceBox', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Urban Exploring Foto-Reise\";}', '

Hin und Rückfahrt

\n

5 tägige Abenteuerreise

\n

Übernachtung und volle Verpflegung

\n

Urbexplorer/örtlicher Guide

\n

Urbexplorer Expeditionsfahrzeug

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', 'Am beliebtesten', 'Mehr Infos', '{{link_url::93}}', 'Jetzt bestellen', '{{link_url::139}}', 'max. 7 Personen', '550 €', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1000, 214, 'tl_article', 112, 1553873803, 'ct_priceBox', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Urban Exploring Foto-Tour\";}', '

bis zu 10 Stunden fotografieren

\n

3 atemberaubende Industrieobjekte

\n

Übernachtung mit Frühstück

\n

Mitfahrgelegenheit

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', 'Mehr Infos', '{{link_url::93}}', 'Jetzt bestellen', '{{link_url::139}}', 'pro Person, inkl. MwSt.', '180 €', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1001, 214, 'tl_article', 120, 1553873842, 'ct_priceBox', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:30:\"Urban Exploring Foto-Abenteuer\";}', '

9 Tage Fotoabenteuer

\n

inclusive Flug von Deutschland

\n

Übernachtung in Guesthouses

\n

deutschsprachiger Guide von Urbexplorer

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', 'Mehr Infos', '{{link_url::93}}', 'Jetzt bestellen', '{{link_url::139}}', 'Gruppenrabatt möglich', '1.490 €', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1002, 214, 'tl_article', 124, 1553870516, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1003, 215, 'tl_article', 128, 1553873070, 'html', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', '
', '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', '
', '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:8:\"bordered\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1006, 216, 'tl_article', 128, 1553873079, 'html', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', '
', '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', '
', '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:8:\"bordered\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1007, 156, 'tl_article', 384, 1554464827, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Zweispaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"510\";i:1;s:3:\"200\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a323a7b693a303b733a31363a22b92fb24e467611e9a91c408d5c22fa41223b693a313b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b7d, 0x613a323a7b693a303b733a31363a22b92fb24e467611e9a91c408d5c22fa41223b693a313b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b7d, '', 2, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1020, 220, 'tl_article', 128, 1554459204, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:24:\"Headerbild ohne Schräge\";}', NULL, '', '', 0xc942253a467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"16\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', 'sdsds', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1022, 156, 'tl_article', 768, 1554464897, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:12:\"Fünfspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a353a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b7d, 0x613a353a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b7d, '', 5, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1023, 156, 'tl_article', 896, 1554464908, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Sechspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a363a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b7d, 0x613a363a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b7d, '', 6, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1024, 156, 'tl_article', 1024, 1554464918, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:13:\"Siebenspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a373a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b7d, 0x613a373a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b7d, '', 7, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1025, 156, 'tl_article', 1152, 1554464925, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Achtspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a383a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b7d, 0x613a383a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b7d, '', 8, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1026, 156, 'tl_article', 1280, 1554464985, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Neunspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a393a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a383b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b7d, 0x613a393a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a383b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b7d, '', 9, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1027, 156, 'tl_article', 1408, 1554464993, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Zehnspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a31303a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a383b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b693a393b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b7d, 0x613a31303a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a383b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b693a393b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b7d, '', 10, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1028, 156, 'tl_article', 1472, 1554465027, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:10:\"Elfspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a31313a7b693a303b733a31363a22c09740c7467611e9a91c408d5c22fa41223b693a313b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a323b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a333b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a343b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a353b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a363b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a373b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a383b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a393b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b693a31303b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b7d, 0x613a31313a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a383b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b693a393b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b693a31303b733a31363a22c09740c7467611e9a91c408d5c22fa41223b7d, '', 11, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1029, 156, 'tl_article', 1504, 1554465044, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:13:\"Zwölfspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a31323a7b693a303b733a31363a22c09740c7467611e9a91c408d5c22fa41223b693a313b733a31363a22c433b88f467611e9a91c408d5c22fa41223b693a323b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a333b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a343b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a353b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a363b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a373b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a383b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a393b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a31303b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b693a31313b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b7d, 0x613a31323a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a383b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b693a393b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b693a31303b733a31363a22c09740c7467611e9a91c408d5c22fa41223b693a31313b733a31363a22c433b88f467611e9a91c408d5c22fa41223b7d, '', 12, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1033, 228, 'tl_article', 128, 1555060408, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:34:\"Headerbild mit Schräge nach links\";}', NULL, '', '', 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1034, 229, 'tl_article', 128, 1555059685, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe.[nbsp]929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1035, 229, 'tl_article', 256, 1555059685, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1036, 229, 'tl_article', 384, 1555059685, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1037, 229, 'tl_article', 512, 1555059685, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1038, 229, 'tl_article', 640, 1555059685, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1039, 229, 'tl_article', 768, 1555059685, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1040, 229, 'tl_article', 896, 1555059685, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1041, 229, 'tl_article', 1024, 1555059685, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1042, 229, 'tl_article', 1152, 1555059685, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1045, 230, 'tl_article', 128, 1555060418, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:35:\"Headerbild mit Schräge nach rechts\";}', NULL, '', '', 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1046, 231, 'tl_article', 128, 1555060297, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe.[nbsp]929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1047, 231, 'tl_article', 256, 1555060297, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1048, 231, 'tl_article', 384, 1555060297, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1049, 231, 'tl_article', 512, 1555060297, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1050, 231, 'tl_article', 640, 1555060297, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1051, 231, 'tl_article', 768, 1555060297, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1052, 231, 'tl_article', 896, 1555060297, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1053, 231, 'tl_article', 1024, 1555060297, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1054, 231, 'tl_article', 1152, 1555060297, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1057, 232, 'tl_article', 128, 1555060437, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe.[nbsp]929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1058, 232, 'tl_article', 256, 1555060437, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1059, 232, 'tl_article', 384, 1555060437, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1060, 232, 'tl_article', 512, 1555060437, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1061, 232, 'tl_article', 640, 1555060437, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1062, 232, 'tl_article', 768, 1555060437, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1063, 232, 'tl_article', 896, 1555060437, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1064, 232, 'tl_article', 1024, 1555060437, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1065, 232, 'tl_article', 1152, 1555060437, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1068, 234, 'tl_article', 128, 1575631603, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:25:\"Layout mit geradem Header\";}', NULL, '', '', 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1069, 235, 'tl_article', 128, 1555060887, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe.[nbsp]929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1070, 235, 'tl_article', 256, 1555060887, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1071, 235, 'tl_article', 384, 1555060887, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1072, 235, 'tl_article', 512, 1555060887, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1073, 235, 'tl_article', 640, 1555060887, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1074, 235, 'tl_article', 768, 1555060887, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1075, 235, 'tl_article', 896, 1555060887, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1076, 235, 'tl_article', 1024, 1555060887, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1077, 235, 'tl_article', 1152, 1555060887, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1081, 238, 'tl_article', 128, 1555061396, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:22:\"Elemente mit Schrägen\";}', NULL, '', '', 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1082, 239, 'tl_article', 64, 1555061513, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:37:\"Schräge - oben rechts - unten rechts\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-center', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1083, 239, 'tl_article', 128, 1555061529, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1085, 237, 'tl_article', 256, 1555061622, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1086, 240, 'tl_article', 256, 1555061657, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1087, 241, 'tl_article', 64, 1555061727, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:35:\"Schräge - oben links - unten links\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-center', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1088, 241, 'tl_article', 128, 1555061671, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1089, 242, 'tl_article', 256, 1555061752, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1090, 243, 'tl_article', 64, 1555061799, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:36:\"Schräge - oben links - unten rechts\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-center', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1091, 243, 'tl_article', 128, 1555061752, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1092, 244, 'tl_article', 256, 1555061752, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1093, 245, 'tl_article', 64, 1555061872, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:36:\"Schräge - oben rechts - unten links\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-center', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1094, 245, 'tl_article', 128, 1555061752, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1095, 246, 'tl_article', 256, 1555061878, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1096, 247, 'tl_article', 64, 1555062327, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Schräge - nur oben rechts\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-center', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1097, 247, 'tl_article', 128, 1555062276, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1098, 248, 'tl_article', 256, 1555062276, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1104, 252, 'tl_article', 128, 1555068558, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:7:\"Kontakt\";}', NULL, '', '', 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1105, 251, 'tl_article', 256, 1555068793, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:12:\"Social Media\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1106, 251, 'tl_article', 384, 1555068772, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Facebook

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-facebook-f', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1107, 251, 'tl_article', 512, 1555068772, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Twitter

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-twitter', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1108, 251, 'tl_article', 640, 1555068772, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Instagram

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-instagram', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1109, 251, 'tl_article', 768, 1555068772, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Pinterest

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-pinterest-p', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1110, 251, 'tl_article', 896, 1555068772, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Linked In

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-linkedin-in', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1111, 251, 'tl_article', 320, 1555069491, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"contact-icons\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1112, 251, 'tl_article', 1024, 1555068866, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1113, 251, 'tl_article', 192, 1555069533, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

+ 49 (0) 0123 4567890

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-phone', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1114, 251, 'tl_article', 224, 1555069533, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

+ 49 (0) 0123 456789

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-mobile', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1115, 251, 'tl_article', 240, 1555069533, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

+ 49 (0) 0123 4567891

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-fax', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1116, 251, 'tl_article', 248, 1555069534, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

info@example.org

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'far fa-envelope', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1117, 251, 'tl_article', 160, 1555069542, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"contact-icons\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1118, 251, 'tl_article', 252, 1555069547, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1119, 253, 'tl_article', 128, 1560511460, 'sliderStart', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '1', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1120, 253, 'tl_article', 192, 1560511460, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Dank der Saalkapazitäten fanden in dem traditionsreichen Haus zahlreiche Großveranstaltungen statt. Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '1', '', 0xc942253a467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Kultur & Freizeit', 'Mehr dazu', '{{event_url::26}}', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1121, 253, 'tl_article', 208, 1560511460, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '1', '', 0xc416cb81467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Sport', 'Mehr erfahren', '{{event_url::27}}', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1122, 253, 'tl_article', 216, 1560511460, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:21:\"Kaserne in Bohnitzsch\";}', '

Das Kasernengelände in Meißen-Bohnitzsch wurde 1936 angelegt und wurde ab Mai 1945 von der Sowjetunion genutzt. Unter anderem war das 7. Garde-Panzerregiment der GSSD hier untergebracht.

', '1', '', 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Militär', 'Mehr dazu', '{{news_url::12}}', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1123, 253, 'tl_article', 224, 1560511460, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Keramikfabrik\";}', '

Bei der Produktion von Kachelöfen, Wandplatten, Porzellanen und Schamotte war Meißen um 1900 führend in Deutschland. Die für Kachelöfen entwickelte Meißner Patentkachel war wohl in den meisten deutschen Wohnzimmern zu finden.

', '1', '', 0xae24b6cc467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Industrie', 'Mehr dazu', '{{link_url::120}}', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1124, 253, 'tl_article', 248, 1560511460, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:29:\"E-Werk in der Brauhausstraße\";}', '

Das ehemalige Elektrizitätswerk an der Brauhausstraße ging 1911 in Betrieb und lieferte Strom für die Meißner Innenstadt. Nach 1990 wurde das E-Werk stillgelegt und 2004 wurde das Kesselhaus im hinteren Grundstücksbereich abgerissen.

', '1', '', 0xb92fb24e467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Industrie', 'Weiterlesen', '{{link_url::121}}', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1125, 253, 'tl_article', 252, 1560511460, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"VEB Ziegelwerk Rotes Haus\";}', '

Die Ziegelei am Roten Haus war die letzte ihrer Art in Meißen, sie war nach fast 140 Jahren Produktion 1993 geschlossen worden.

', '1', '', 0xc09740c7467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Industrie', 'Weiterlesen', '{{news_url::23}}', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1126, 253, 'tl_article', 256, 1560511460, 'sliderStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1129, 255, 'tl_article', 128, 1560782354, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:14:\"Modale Dialoge\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', 'none', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1130, 255, 'tl_article', 256, 1560782390, 'module', 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 418, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', 'none', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1131, 255, 'tl_article', 384, 1560783378, 'module', 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 419, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', 'none', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1132, 255, 'tl_article', 512, 1560783579, 'module', 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 420, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', 'none', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1133, 255, 'tl_article', 640, 1560783641, 'module', 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 421, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', 'none', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1134, 255, 'tl_article', 448, 1560843081, 'module', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 422, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', 'none', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1135, 197, 'tl_article', 64, 1641290342, 'module', 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 423, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1137, 156, 'tl_article', 192, 1644934174, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:10:\"Referenzen\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"510\";i:1;s:3:\"200\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a323a7b693a303b733a31363a22b92fb24e467611e9a91c408d5c22fa41223b693a313b733a31363a22c09740c7467611e9a91c408d5c22fa41223b7d, 0x613a323a7b693a303b733a31363a22b92fb24e467611e9a91c408d5c22fa41223b693a313b733a31363a22c09740c7467611e9a91c408d5c22fa41223b7d, '', 2, 0, 0, 'custom', '', 'gallery_default_references', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'sourceText', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`, `data`, `markdownSource`, `showPreview`) VALUES(1138, 236, 'tl_article', 128, 1645107384, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Inhalt für rechte Spalte ...

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', NULL, NULL, NULL, NULL, 'sourceText', ''); - -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(718, NULL, 1538489608, 0x5556381bc64d11e88ff2408d5c22fa41, 'folder', 'files/odd', '', 'c62b1ec4b5c5a4e2a186bce08cb64b48', '1', 'odd', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(720, 0x5556381bc64d11e88ff2408d5c22fa41, 1538489691, 0x86ee99abc64d11e88ff2408d5c22fa41, 'folder', 'files/odd/img', '', '079c14b1399536cf8514e64cb93453ed', '1', 'img', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(755, 0x86ee99abc64d11e88ff2408d5c22fa41, 1552579599, 0x267f1df5467311e9a91c408d5c22fa41, 'folder', 'files/odd/img/verlassene-orte-meissen', '', '5652813e47ef238e3e5e167a24da3428', '1', 'verlassene-orte-meissen', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(796, 0x267f1df5467311e9a91c408d5c22fa41, 1553878188, 0xae24b6cc467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/keramikfabrik.jpg', 'jpg', 'b477fb4521e9dea4d4ccf8cddc88bdb5', '1', 'keramikfabrik.jpg', 0.00048828125, 0.243401759531, 0.99951171875, 0.593108504399, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(797, 0x267f1df5467311e9a91c408d5c22fa41, 1552658157, 0xb0ad636c467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/zuckerwarenfabrik-elbdom.jpg', 'jpg', '01b19ac855e4dc1edf18a048cfaa8100', '1', 'zuckerwarenfabrik-elbdom.jpg', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(798, 0x267f1df5467311e9a91c408d5c22fa41, 1552658153, 0xb0b560c5467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/wohnhaus-rosengasse-1.jpg', 'jpg', '6b30092e92ea58c487f633022bdafa7a', '1', 'wohnhaus-rosengasse-1.jpg', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(799, 0x267f1df5467311e9a91c408d5c22fa41, 1552658156, 0xb2d63e05467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/wohnhaus-rosengasse-3.jpg', 'jpg', '33416ee1cda94de335dba34bfe8c34ee', '1', 'wohnhaus-rosengasse-3.jpg', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(800, 0x267f1df5467311e9a91c408d5c22fa41, 1552658152, 0xb525bf9c467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/wohnhaus-goernische-gasse.jpg', 'jpg', '9e9abd17d1a49053d11924edcebccf1e', '1', 'wohnhaus-goernische-gasse.jpg', 0, 0.139205662603, 1, 0.181281950452, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(801, 0x267f1df5467311e9a91c408d5c22fa41, 1552658155, 0xb81fbc97467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/wohnhaus-rosengasse-2.jpg', 'jpg', 'ef1a07b23859899a734e925d7a2c9700', '1', 'wohnhaus-rosengasse-2.jpg', 0, 0.246356696738, 1, 0.19465648855, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(802, 0x267f1df5467311e9a91c408d5c22fa41, 1644934347, 0xb92fb24e467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/e-werk-brauhausstrasse-1.jpg', 'jpg', '61cdb7bef90f13a7136a8a4b25dc905f', '1', 'e-werk-brauhausstrasse-1.jpg', 0.00732421875, 0.0791556728232, 0.99267578125, 0.529683377309, 0x613a313a7b733a323a226465223b613a353a7b733a353a227469746c65223b733a383a225265666572656e7a223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a32323a22452d5765726b20427261756861757373747261c39f65223b733a373a226c6963656e7365223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(804, 0x267f1df5467311e9a91c408d5c22fa41, 1644934343, 0xc09740c7467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/alte-ziegelei-1.jpg', 'jpg', 'a247b7b1e54abc0c5046f6d78607f185', '1', 'alte-ziegelei-1.jpg', 0.01025390625, 0.212609970674, 0.98974609375, 0.558651026393, 0x613a313a7b733a323a226465223b613a353a7b733a353a227469746c65223b733a383a225265666572656e7a223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a31333a22416c7465205a696567656c6569223b733a373a226c6963656e7365223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(805, 0x267f1df5467311e9a91c408d5c22fa41, 1552658147, 0xc416cb81467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/jahnhalle.jpg', 'jpg', '8f7955f5b457654b74a15e88654f8728', '1', 'jahnhalle.jpg', 0, 0.148093841642, 1, 0.646627565982, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(806, 0x267f1df5467311e9a91c408d5c22fa41, 1552658145, 0xc433b88f467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/alte-ziegelei-3.jpg', 'jpg', '40936257485cd57168f9fa455e933d5a', '1', 'alte-ziegelei-3.jpg', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(807, 0x267f1df5467311e9a91c408d5c22fa41, 1552658150, 0xc6eaaf6d467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/rittergut-coelln.jpg', 'jpg', 'f630378402f55ff1df4e8bed31098d01', '1', 'rittergut-coelln.jpg', 0, 0.283724340176, 1, 0.401759530792, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(809, 0x267f1df5467311e9a91c408d5c22fa41, 1553878145, 0xc942253a467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/hamburger-hof.jpg', 'jpg', '3f64cf746174ec835dc2d5670811ffaa', '1', 'hamburger-hof.jpg', 0.00341796875, 0.110520722635, 0.99658203125, 0.672688629118, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(810, 0x267f1df5467311e9a91c408d5c22fa41, 1553878163, 0xcbc4a14c467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/kaserne-bohnitzsch-1.jpg', 'jpg', '6ca91cbb5c7f27795f171a1d122290d4', '1', 'kaserne-bohnitzsch-1.jpg', 0.0078125, 0.183284457478, 0.9921875, 0.609970674487, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(811, 0x267f1df5467311e9a91c408d5c22fa41, 1553878174, 0xccb24364467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/kaserne-bohnitzsch-2.jpg', 'jpg', '8839c2910a3f63f8607f94705aa10c4b', '1', 'kaserne-bohnitzsch-2.jpg', 0, 0.127565982405, 1, 0.681085043988, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(812, 0x267f1df5467311e9a91c408d5c22fa41, 1553878204, 0xce7c80c2467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/landkrankenhaus.jpg', 'jpg', 'a3b13f1be8e11c70c86253fa827f299a', '1', 'landkrankenhaus.jpg', 0.0048828125, 0.280575539568, 0.9951171875, 0.531066056246, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(813, 0x267f1df5467311e9a91c408d5c22fa41, 1552658147, 0xd285349b467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/herrenhaus-dresdner-strasse.jpg', 'jpg', 'a0e798cdd651953ae3f129724fcb3d7d', '1', 'herrenhaus-dresdner-strasse.jpg', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(815, 0x86ee99abc64d11e88ff2408d5c22fa41, 1552657625, 0xc96d0cf7472811e9a91c408d5c22fa41, 'file', 'files/odd/img/ODD_Logo.png', 'png', '0dd572b40f1e9c2843715f9d1dcc677e', '1', 'ODD_Logo.png', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a33333a224f4444204c6f676f202d204578706c6f72696e6720436f6e74616f205468656d65223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(820, 0x5556381bc64d11e88ff2408d5c22fa41, 1553271254, 0x89152b404cbd11e9a91c408d5c22fa41, 'folder', 'files/odd/scss', '', 'af3cb9077c044201ad94991c70c728d1', '1', 'scss', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(821, 0x89152b404cbd11e9a91c408d5c22fa41, 1575380404, 0x89152b384cbd11e9a91c408d5c22fa41, 'file', 'files/odd/scss/_custom_colors.scss', 'scss', 'faa3e283a513251c3af4f09bf6d5d961', '1', '_custom_colors.scss', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(822, 0x89152b404cbd11e9a91c408d5c22fa41, 1553271254, 0x89152b324cbd11e9a91c408d5c22fa41, 'file', 'files/odd/scss/_custom_variables.scss', 'scss', '4791bf84f66d4b442eeaeac9bb8a8c72', '1', '_custom_variables.scss', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(823, 0x89152b404cbd11e9a91c408d5c22fa41, 1575380926, 0x89152b2b4cbd11e9a91c408d5c22fa41, 'file', 'files/odd/scss/custom.scss', 'scss', '9cbb457cbe5c21e7a8a0f3992523afdb', '1', 'custom.scss', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(854, 0x267f1df5467311e9a91c408d5c22fa41, 1555065120, 0x34b541155d0e11e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/IMG_3790_1_HDR_tonemapped.jpg', 'jpg', 'd98ebb0c9aad9dd1bc4be9bfdc739a66', '1', 'IMG_3790_1_HDR_tonemapped.jpg', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(855, 0x267f1df5467311e9a91c408d5c22fa41, 1555065120, 0x34b5410d5d0e11e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/PICT0004_03_8bit.jpg', 'jpg', '6c55203d749a9ba94106930d66f9044b', '1', 'PICT0004_03_8bit.jpg', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(856, 0x267f1df5467311e9a91c408d5c22fa41, 1555065120, 0x34b541065d0e11e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/e-werk-brauhausstrasse-2.jpg', 'jpg', 'e0d8a92393c972e5cd168d5a78dd67b7', '1', 'e-werk-brauhausstrasse-2.jpg', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(857, 0x86ee99abc64d11e88ff2408d5c22fa41, 1555316209, 0xd163d7285f5611e989ece0d55edd9ad9, 'file', 'files/odd/img/favicon.ico', 'ico', '75ab0f0a098e0a63c5a68c9cb577b9e1', '1', 'favicon.ico', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(858, NULL, 1638524413, 0x03978b0f541d11ec8ee0e0d55e59bff3, 'folder', 'files/social-feed', '', '4d2d253fd689642108b33d6deb15f113', '1', 'social-feed', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(859, 0x03978b0f541d11ec8ee0e0d55e59bff3, 1638524413, 0x03978b04541d11ec8ee0e0d55e59bff3, 'folder', 'files/social-feed/70570732', '', 'a6fbae4602a396d3aaa1b982987550d6', '1', '70570732', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(860, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524413, 0x03978afc541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6868857032481538048.jpg', 'jpg', '28d81d1e1217d5fc79781bb9becc742a', '1', '6868857032481538048.jpg', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(861, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524413, 0x03978af5541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6863780628970684416.jpg', 'jpg', '9a269aaa9d7811b160d070621ebb40d3', '1', '6863780628970684416.jpg', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(862, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524414, 0x03978aeb541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6859777035833786368.jpg', 'jpg', '0f88e5d0ea5396e6b111e134321e5033', '1', '6859777035833786368.jpg', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(863, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524414, 0x03978ae4541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6821723322980589568.jpg', 'jpg', '6cc89d2eb80b2e58a96c8a8919f6bc3b', '1', '6821723322980589568.jpg', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(864, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524414, 0x03978adc541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6814107593779269633.jpg', 'jpg', '8ed28675f33d2f3fa6ee96979e532dc5', '1', '6814107593779269633.jpg', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(865, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524415, 0x03978ad4541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6810600668026454016.jpg', 'jpg', '11df1eb0f5b8469080bbaa6a8e4a8841', '1', '6810600668026454016.jpg', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(866, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524415, 0x03978ac8541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6806161831481159680.jpg', 'jpg', 'b4fad794ccfcf56f75617f9614f7c243', '1', '6806161831481159680.jpg', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(867, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524420, 0x03978a95541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6802949577843453952.jpg', 'jpg', '76ea90aba86bbf728e9a407154bbbc11', '1', '6802949577843453952.jpg', 0, 0, 0, 0, NULL, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`, `lastModified`) VALUES(868, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524420, 0x08043c64541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6800429967206359041.jpg', 'jpg', 'ffeafff60a8a39c0ae7f6ebe37e4baa0', '1', '6800429967206359041.jpg', 0, 0, 0, 0, NULL, NULL); - -INSERT INTO `tl_form` (`id`, `tstamp`, `title`, `alias`, `jumpTo`, `sendViaEmail`, `recipient`, `subject`, `format`, `skipEmpty`, `storeValues`, `targetTable`, `customTpl`, `method`, `novalidate`, `attributes`, `formID`, `allowTags`, `advancedCss`, `mailerTransport`) VALUES(6, 1539346644, 'Odd / Beispielformular', 'mate-beispielformular', 135, '1', 'info@example.de', 'Formular-Anfrage mate.contao-themes.net', 'raw', '', '', '', 'form_wrapper', 'POST', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', ''); -INSERT INTO `tl_form` (`id`, `tstamp`, `title`, `alias`, `jumpTo`, `sendViaEmail`, `recipient`, `subject`, `format`, `skipEmpty`, `storeValues`, `targetTable`, `customTpl`, `method`, `novalidate`, `attributes`, `formID`, `allowTags`, `advancedCss`, `mailerTransport`) VALUES(8, 1539346653, 'Odd / Kontaktformular', 'mate-kontaktformular', 135, '1', 'info@example.de', 'Anfrage Kontaktformular bei Mate Theme', 'raw', '', '', '', 'form_wrapper', 'POST', '', 'a:2:{i:0;s:0:\"\";i:1;s:4:\"test\";}', '', '', '', ''); - -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(22, 6, 128, 1511533531, 'text', 'Name', 'name', NULL, NULL, NULL, '1', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(23, 6, 64, 1511535789, 'text', 'Vorname', 'vorname', NULL, NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(27, 6, 640, 1511533525, 'text', 'E-Mail', 'email', NULL, NULL, NULL, '', 'email', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(28, 6, 768, 1511533391, 'text', 'Telefon', 'telefon', NULL, NULL, NULL, '', 'phone', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(29, 6, 896, 1511533449, 'textarea', 'Ihre Nachricht', 'nachricht', NULL, NULL, NULL, '1', '', '', 0, 0, 'a:2:{i:0;s:1:\"4\";i:1;s:2:\"40\";}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(30, 6, 1024, 1511533458, 'submit', '', '', NULL, NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', 'Absenden', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(31, 6, 876, 1511786014, 'checkbox', 'Checkbox-Menü', 'kontaktart', NULL, NULL, 0x613a333a7b693a303b613a323a7b733a353a2276616c7565223b733a383a226175737761686c31223b733a353a226c6162656c223b733a393a224175737761686c2031223b7d693a313b613a323a7b733a353a2276616c7565223b733a383a226175737761686c32223b733a353a226c6162656c223b733a393a224175737761686c2032223b7d693a323b613a323a7b733a353a2276616c7565223b733a383a226175737761686c33223b733a353a226c6162656c223b733a393a224175737761686c2033223b7d7d, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(32, 6, 864, 1511534002, 'select', 'Wie sind Sie auf uns aufmerksam geworden?', 'wie-gefunden', NULL, NULL, 0x613a363a7b693a303b613a323a7b733a353a2276616c7565223b733a383a22696e7465726e6574223b733a353a226c6162656c223b733a383a22496e7465726e6574223b7d693a313b613a323a7b733a353a2276616c7565223b733a373a227a656974756e67223b733a353a226c6162656c223b733a373a225a656974756e67223b7d693a323b613a323a7b733a353a2276616c7565223b733a31313a22706572736f656e6c696368223b733a353a226c6162656c223b733a32333a2250657273c3b66e6c6963686520456d706665686c756e67223b7d693a333b613a323a7b733a353a2276616c7565223b733a353a22726164696f223b733a353a226c6162656c223b733a353a22526164696f223b7d693a343b613a323a7b733a353a2276616c7565223b733a323a227476223b733a353a226c6162656c223b733a323a225456223b7d693a353b613a323a7b733a353a2276616c7565223b733a393a22736f6e737469676573223b733a353a226c6162656c223b733a393a22536f6e737469676573223b7d7d, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(33, 6, 888, 1511536334, 'radio', 'Radio-Button-Menü', 'radio-button', NULL, NULL, 0x613a343a7b693a303b613a323a7b733a353a2276616c7565223b733a353a227765727431223b733a353a226c6162656c223b733a363a22576572742031223b7d693a313b613a323a7b733a353a2276616c7565223b733a353a227765727432223b733a353a226c6162656c223b733a363a22576572742032223b7d693a323b613a323a7b733a353a2276616c7565223b733a353a227765727433223b733a353a226c6162656c223b733a363a22576572742033223b7d693a333b613a323a7b733a353a2276616c7565223b733a353a227765727434223b733a353a226c6162656c223b733a363a22576572742034223b7d7d, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(34, 6, 892, 1645102642, 'upload', 'Dateiupload', 'dateiupload', NULL, NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '1', NULL, '', '1', '', '', '', 0, 0, 'form_upload_odd', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(47, 6, 816, 1511781024, 'text', 'Datumsauswahl', 'datepicker', NULL, NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', 'datepicker', '', '', 0, 0, '', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(48, 6, 840, 1511781167, 'text', 'Zeitauswahl', 'timepicker', NULL, NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', 'timepicker', '', '', 0, 0, '', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(50, 8, 128, 1555069694, 'text', 'Name', 'name', NULL, NULL, NULL, '1', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(52, 8, 384, 1512724283, 'text', 'E-Mail', 'email', NULL, NULL, NULL, '1', 'email', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(53, 8, 512, 1512724310, 'textarea', 'Ihre Nachricht', 'nachricht', NULL, NULL, NULL, '1', '', '', 0, 0, 'a:2:{i:0;s:1:\"4\";i:1;s:2:\"40\";}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(54, 8, 640, 1512724321, 'submit', '', '', NULL, NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', '', NULL, '', '', '', '', '', 0, 0, '', 'Absenden', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(57, 6, 960, 1525257445, 'rocksolid_antispam', 'Antispam Sicherheitsfrage', '', NULL, NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(58, 8, 576, 1555069708, 'captcha', '', '', NULL, NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`, `maxImageHeight`, `maxImageWidth`, `errorMsg`, `customRgxp`) VALUES(60, 8, 768, 1555069889, 'explanation', '', '', '

[nbsp]

\n

* Pflichtfelder

', NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', '', 0, 0, '', ''); - -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(16, 17, 1555080617, 'Headerbild', '', '', '', 1920, 400, 'crop', 0, '1', '', ''); -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(17, 17, 1560847552, 'Headerbild mit Schräge', '', '1x, 1.5x, 2x', '', 1920, 650, 'crop', 0, '1', '', ''); -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(18, 17, 1552657088, 'Slider', '', '', '', 1920, 750, 'crop', 0, '1', '', ''); -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(19, 17, 1525783920, 'Teaserboxen', '', '1x, 1.5x, 2x', '', 350, 200, 'crop', 0, '1', '', ''); -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(22, 17, 1528372682, 'Team', '', '1x, 1.5x, 2x', '', 350, 250, 'crop', 100, '1', '', ''); -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(23, 17, 1539099645, 'News / Listenansicht', '', '', '', 540, 350, 'crop', 100, '1', '', ''); -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(24, 17, 1560847649, 'Slider mit Schräge', '', '', '', 1920, 900, 'crop', 0, '1', '', ''); -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(25, 17, 1552657717, 'Logo', '', '1x, 1.5x, 2x', '', NULL, 90, 'box', NULL, '1', '', ''); -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(26, 17, 1572884258, 'Maklermodul / Listenansicht', '', '', '', 357, 200, 'crop', 0, '', '', ''); - -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(6, 16, 128, 1555080029, '(max-width: 991px)', '1x, 1.5x, 2x', '', 991, 350, 'crop', NULL, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(7, 17, 128, 1555080183, '(max-width: 767px)', '1x, 1.5x, 2x', '', 767, 450, 'crop', NULL, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(8, 18, 128, 1525699627, '(max-width:767px)', '1x, 1.5x, 2x', '', 767, 500, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(9, 18, 256, 1525787411, '(max-width:1024px)', '1x, 1.5x, 2x', '', 1024, 500, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(10, 18, 384, 1525856669, '(max-width:1300px)', '1x, 1.5x, 2x', '', 1300, 550, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(13, 22, 128, 1528372677, '(max-width:1199px)', '1x, 1.5x, 2x', '', 300, 200, 'crop', 100, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(14, 22, 64, 1528372754, '(max-width:991px)', '1x, 1.5x, 2x', '', 420, 300, 'crop', 100, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(15, 22, 32, 1528372807, '(max-width:767px)', '1x, 1.5x, 2x', '', 510, 350, 'crop', 100, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(16, 22, 16, 1528372855, '(max-width:400px)', '1x, 1.5x, 2x', '', 370, 255, 'crop', 100, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(20, 24, 128, 1552659511, '(max-width: 1450px)', '1x, 1.5x, 2x', '', 1455, 800, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(21, 24, 64, 1552659506, '(max-width: 1150px)', '1x, 1.5x, 2x', '', 1150, 800, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(22, 24, 32, 1552659500, '(max-width:992px)', '1x, 1.5x, 2x', '', 992, 800, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(23, 24, 16, 1552660075, '(max-width: 767px)', '1x, 1.5x, 2x', '', 767, 500, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(25, 19, 128, 1552663259, '(max-width: 767px)', '1x, 1.5x, 2x', '', 510, 300, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(27, 17, 256, 1555079599, '(max-width: 991px)', '1x, 1.5x, 2x', '', 991, 500, 'crop', NULL, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(28, 17, 64, 1555079881, '(max-width: 450px)', '1x, 1.5x, 2x', '', 450, 400, 'crop', NULL, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(29, 16, 64, 1555080549, '(max-width: 450px)', '1x, 1.5x, 2x', '', 450, 250, 'crop', NULL, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(30, 16, 256, 1555080674, '(max-width: 1200px)', '1x, 1.5x, 2x', '', 1200, 350, 'crop', NULL, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(31, 24, 8, 1560847732, '(max-width: 450px)', '1x, 1.5x, 2x', '', 450, 295, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(32, 18, 64, 1560847802, '(max-width: 450px)', '1x, 1.5x, 2x', '', 450, 295, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(33, 19, 64, 1560847852, '(max-width: 450px)', '1x, 1.5x, 2x', '', 380, 225, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(34, 26, 128, 1572884653, '(max-width:991px)', '', '', 417, 233, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(35, 26, 64, 1572884651, '(max-width:767px)', '', '', 511, 286, 'crop', 0, ''); - -INSERT INTO `tl_layout` (`id`, `pid`, `tstamp`, `name`, `rows`, `headerHeight`, `footerHeight`, `cols`, `widthLeft`, `widthRight`, `sections`, `framework`, `stylesheet`, `external`, `loadingOrder`, `combineScripts`, `modules`, `template`, `viewport`, `titleTag`, `cssClass`, `onload`, `head`, `addJQuery`, `jquery`, `addMooTools`, `mootools`, `analytics`, `scripts`, `script`, `static`, `width`, `align`, `externalJs`, `minifyMarkup`, `defaultImageDensities`, `lightboxSize`) VALUES(55, 17, 1643298800, 'Einspaltiges Layout / Schräger Header', '3rw', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '1cl', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '', 0x613a313a7b693a303b613a343a7b733a353a227469746c65223b733a303a22223b733a323a226964223b733a303a22223b733a383a2274656d706c617465223b733a31333a22626c6f636b5f73656374696f6e223b733a383a22706f736974696f6e223b733a333a22746f70223b7d7d, '', NULL, NULL, 'external_first', '1', 0x613a363a7b693a303b613a333a7b733a333a226d6f64223b733a333a22333832223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a313b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a323b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a343a226d61696e223b733a363a22656e61626c65223b733a313a2231223b7d693a333b613a333a7b733a333a226d6f64223b733a333a22333932223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a343b613a333a7b733a333a226d6f64223b733a333a22333732223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a353b613a333a7b733a333a226d6f64223b733a333a22333731223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d7d, 'fe_page_odd', 'width=device-width, initial-scale=1, shrink-to-fit=no', '', '', '', NULL, '1', 'a:2:{i:0;s:11:\"j_accordion\";i:1;s:10:\"j_colorbox\";}', '', NULL, NULL, 'a:1:{i:0;s:9:\"js_slider\";}', NULL, '', '', 'center', NULL, '1', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}'); -INSERT INTO `tl_layout` (`id`, `pid`, `tstamp`, `name`, `rows`, `headerHeight`, `footerHeight`, `cols`, `widthLeft`, `widthRight`, `sections`, `framework`, `stylesheet`, `external`, `loadingOrder`, `combineScripts`, `modules`, `template`, `viewport`, `titleTag`, `cssClass`, `onload`, `head`, `addJQuery`, `jquery`, `addMooTools`, `mootools`, `analytics`, `scripts`, `script`, `static`, `width`, `align`, `externalJs`, `minifyMarkup`, `defaultImageDensities`, `lightboxSize`) VALUES(56, 17, 1644832868, 'Zweispaltiges Layout / Linke Spalte / Schräger Header', '3rw', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '2cll', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '', 0x613a313a7b693a303b613a343a7b733a353a227469746c65223b733a303a22223b733a323a226964223b733a303a22223b733a383a2274656d706c617465223b733a31333a22626c6f636b5f73656374696f6e223b733a383a22706f736974696f6e223b733a333a22746f70223b7d7d, '', NULL, NULL, 'external_first', '1', 0x613a383a7b693a303b613a333a7b733a333a226d6f64223b733a333a22333832223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a313b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a323b613a333a7b733a333a226d6f64223b733a333a22333834223b733a333a22636f6c223b733a343a226c656674223b733a363a22656e61626c65223b733a313a2231223b7d693a333b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a343a226c656674223b733a363a22656e61626c65223b733a313a2231223b7d693a343b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a343a226d61696e223b733a363a22656e61626c65223b733a313a2231223b7d693a353b613a333a7b733a333a226d6f64223b733a333a22333932223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a363b613a333a7b733a333a226d6f64223b733a333a22333732223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a373b613a333a7b733a333a226d6f64223b733a333a22333731223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d7d, 'fe_page_odd_left', 'width=device-width, initial-scale=1, shrink-to-fit=no', '', 'left-col-layout', '', NULL, '1', 'a:2:{i:0;s:11:\"j_accordion\";i:1;s:10:\"j_colorbox\";}', '', NULL, NULL, 'a:1:{i:0;s:9:\"js_slider\";}', NULL, '', '', 'center', NULL, '1', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}'); -INSERT INTO `tl_layout` (`id`, `pid`, `tstamp`, `name`, `rows`, `headerHeight`, `footerHeight`, `cols`, `widthLeft`, `widthRight`, `sections`, `framework`, `stylesheet`, `external`, `loadingOrder`, `combineScripts`, `modules`, `template`, `viewport`, `titleTag`, `cssClass`, `onload`, `head`, `addJQuery`, `jquery`, `addMooTools`, `mootools`, `analytics`, `scripts`, `script`, `static`, `width`, `align`, `externalJs`, `minifyMarkup`, `defaultImageDensities`, `lightboxSize`) VALUES(57, 17, 1644833953, 'Zweispaltiges Layout / Rechte Spalte / Schräger Header', '3rw', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '2clr', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 0x613a313a7b693a303b613a343a7b733a353a227469746c65223b733a303a22223b733a323a226964223b733a303a22223b733a383a2274656d706c617465223b733a31333a22626c6f636b5f73656374696f6e223b733a383a22706f736974696f6e223b733a333a22746f70223b7d7d, '', NULL, NULL, 'external_first', '1', 0x613a383a7b693a303b613a333a7b733a333a226d6f64223b733a333a22333832223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a313b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a323b613a333a7b733a333a226d6f64223b733a333a22333834223b733a333a22636f6c223b733a353a227269676874223b733a363a22656e61626c65223b733a313a2231223b7d693a333b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a353a227269676874223b733a363a22656e61626c65223b733a313a2231223b7d693a343b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a343a226d61696e223b733a363a22656e61626c65223b733a313a2231223b7d693a353b613a333a7b733a333a226d6f64223b733a333a22333932223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a363b613a333a7b733a333a226d6f64223b733a333a22333732223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a373b613a333a7b733a333a226d6f64223b733a333a22333731223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d7d, 'fe_page_odd_right', 'width=device-width, initial-scale=1, shrink-to-fit=no', '', 'left-col-layout', '', NULL, '1', 'a:2:{i:0;s:11:\"j_accordion\";i:1;s:10:\"j_colorbox\";}', '', NULL, NULL, 'a:1:{i:0;s:9:\"js_slider\";}', NULL, '', '', 'center', NULL, '1', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}'); -INSERT INTO `tl_layout` (`id`, `pid`, `tstamp`, `name`, `rows`, `headerHeight`, `footerHeight`, `cols`, `widthLeft`, `widthRight`, `sections`, `framework`, `stylesheet`, `external`, `loadingOrder`, `combineScripts`, `modules`, `template`, `viewport`, `titleTag`, `cssClass`, `onload`, `head`, `addJQuery`, `jquery`, `addMooTools`, `mootools`, `analytics`, `scripts`, `script`, `static`, `width`, `align`, `externalJs`, `minifyMarkup`, `defaultImageDensities`, `lightboxSize`) VALUES(58, 17, 1644834189, 'Dreispaltiges Layout / Linke und rechte Spalte / Schräger Header', '3rw', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '3cl', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 0x613a313a7b693a303b613a343a7b733a353a227469746c65223b733a303a22223b733a323a226964223b733a303a22223b733a383a2274656d706c617465223b733a31333a22626c6f636b5f73656374696f6e223b733a383a22706f736974696f6e223b733a333a22746f70223b7d7d, '', NULL, NULL, 'external_first', '1', 0x613a393a7b693a303b613a333a7b733a333a226d6f64223b733a333a22333832223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a313b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a323b613a333a7b733a333a226d6f64223b733a333a22333834223b733a333a22636f6c223b733a343a226c656674223b733a363a22656e61626c65223b733a313a2231223b7d693a333b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a343a226c656674223b733a363a22656e61626c65223b733a313a2231223b7d693a343b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a353a227269676874223b733a363a22656e61626c65223b733a313a2231223b7d693a353b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a343a226d61696e223b733a363a22656e61626c65223b733a313a2231223b7d693a363b613a333a7b733a333a226d6f64223b733a333a22333932223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a373b613a333a7b733a333a226d6f64223b733a333a22333732223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a383b613a333a7b733a333a226d6f64223b733a333a22333731223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d7d, 'fe_page_odd_three_columns', 'width=device-width, initial-scale=1, shrink-to-fit=no', '', 'left-right-col-layout', '', NULL, '1', 'a:2:{i:0;s:11:\"j_accordion\";i:1;s:10:\"j_colorbox\";}', '', NULL, NULL, 'a:1:{i:0;s:9:\"js_slider\";}', NULL, '', '', 'center', NULL, '1', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}'); -INSERT INTO `tl_layout` (`id`, `pid`, `tstamp`, `name`, `rows`, `headerHeight`, `footerHeight`, `cols`, `widthLeft`, `widthRight`, `sections`, `framework`, `stylesheet`, `external`, `loadingOrder`, `combineScripts`, `modules`, `template`, `viewport`, `titleTag`, `cssClass`, `onload`, `head`, `addJQuery`, `jquery`, `addMooTools`, `mootools`, `analytics`, `scripts`, `script`, `static`, `width`, `align`, `externalJs`, `minifyMarkup`, `defaultImageDensities`, `lightboxSize`) VALUES(59, 17, 1643298853, 'Einspaltiges Layout / Gerader Header', '3rw', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '1cl', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '', 0x613a313a7b693a303b613a343a7b733a353a227469746c65223b733a303a22223b733a323a226964223b733a303a22223b733a383a2274656d706c617465223b733a31333a22626c6f636b5f73656374696f6e223b733a383a22706f736974696f6e223b733a333a22746f70223b7d7d, '', NULL, NULL, 'external_first', '1', 0x613a363a7b693a303b613a333a7b733a333a226d6f64223b733a333a22343137223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a313b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a323b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a343a226d61696e223b733a363a22656e61626c65223b733a313a2231223b7d693a333b613a333a7b733a333a226d6f64223b733a333a22333932223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a343b613a333a7b733a333a226d6f64223b733a333a22333732223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a353b613a333a7b733a333a226d6f64223b733a333a22333731223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d7d, 'fe_page_odd', 'width=device-width, initial-scale=1, shrink-to-fit=no', '', '', '', NULL, '1', 'a:2:{i:0;s:11:\"j_accordion\";i:1;s:10:\"j_colorbox\";}', '', NULL, NULL, 'a:1:{i:0;s:9:\"js_slider\";}', NULL, '', '', 'center', NULL, '1', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}'); - -INSERT INTO `tl_member` (`id`, `tstamp`, `firstname`, `lastname`, `dateOfBirth`, `gender`, `company`, `street`, `postal`, `city`, `state`, `country`, `phone`, `mobile`, `fax`, `email`, `website`, `language`, `groups`, `login`, `username`, `password`, `assignDir`, `homeDir`, `disable`, `start`, `stop`, `dateAdded`, `lastLogin`, `currentLogin`, `locked`, `session`, `useTwoFactor`, `secret`, `trustedTokenVersion`, `backupCodes`, `loginAttempts`) VALUES(1, 1259754224, 'John', 'Smith', '238201200', 'male', '', '', '', '', '', '', '', '', '', 'j.smith@example.com', '', 'en', 0x613a313a7b693a303b733a313a2232223b7d, '1', 'j.smith', '$2y$10$r//Ke.SkjhB5W8PLFKMmweY5Bv2d4CbSm3f3sH8Q4UMp8QknQPe0y', '', 0x00000000000000000000000000000000, '', '', '', 1259754224, 1539337506, 1539337760, 0, 0x613a363a7b733a373a2272656665726572223b613a323a7b733a343a226c617374223b733a31373a226d656d626572732d617265612e68746d6c223b733a373a2263757272656e74223b733a393a22757365722e68746d6c223b7d733a31303a22636170746368615f3230223b613a333a7b733a333a2273756d223b693a383b733a333a226b6579223b733a33333a22636562373937343262653137306630303832363537373732373734376261306437223b733a343a2274696d65223b693a313439373134373934303b7d733a31353a22636170746368615f63617074636861223b613a333a7b733a333a2273756d223b693a31313b733a333a226b6579223b733a33333a22633431623637396665326338366161333063316130316230613034336234366237223b733a343a2274696d65223b693a313439373134373934303b7d733a32313a22636170746368615f6c6f73745f70617373776f7264223b613a333a7b733a333a2273756d223b693a363b733a333a226b6579223b733a33333a22636239353765633334376531353338336466313963636562623232346465386133223b733a343a2274696d65223b693a313531313533303338333b7d733a32313a22726f636b736f6c69645f616e74697370616d5f3335223b613a333a7b733a353a226e616d6573223b613a333a7b693a303b733a373a22656d61696c2d32223b693a313b733a333a2275726c223b693a323b733a32323a225f4b704b4b622d4c456d49616f463971443064387851223b7d733a363a2276616c756573223b613a333a7b693a303b733a303a22223b693a313b733a303a22223b693a323b733a32323a2251336a376a50586f6b6b5434466e30686a455a796651223b7d733a343a2274696d65223b693a313532343930393935363b7d733a32313a22726f636b736f6c69645f616e74697370616d5f3535223b613a333a7b733a353a226e616d6573223b613a333a7b693a303b733a373a22656d61696c2d32223b693a313b733a333a2275726c223b693a323b733a32323a22525a584d38423675684b6f436575556d314c45437167223b7d733a363a2276616c756573223b613a333a7b693a303b733a303a22223b693a313b733a303a22223b693a323b733a32323a222d65696d7a627975674d4d487647366635454f4f6d51223b7d733a343a2274696d65223b693a313532343931303738353b7d7d, '', NULL, 0, NULL, 0); -INSERT INTO `tl_member` (`id`, `tstamp`, `firstname`, `lastname`, `dateOfBirth`, `gender`, `company`, `street`, `postal`, `city`, `state`, `country`, `phone`, `mobile`, `fax`, `email`, `website`, `language`, `groups`, `login`, `username`, `password`, `assignDir`, `homeDir`, `disable`, `start`, `stop`, `dateAdded`, `lastLogin`, `currentLogin`, `locked`, `session`, `useTwoFactor`, `secret`, `trustedTokenVersion`, `backupCodes`, `loginAttempts`) VALUES(2, 1259754224, 'Donna', 'Evans', '191635200', 'female', '', '', '', '', '', '', '', '', '', 'd.evans@example.com', '', 'en', 0x613a313a7b693a303b733a313a2231223b7d, '1', 'd.evans', '$2y$10$3.ghpkaeW/ATUeSrhA8sgedbs4AdboKczBPV7IqyweXS6eCQ749pS', '', 0x00000000000000000000000000000000, '', '', '', 1259754224, 1516703824, 1553272691, 0, 0x613a333a7b733a373a2272656665726572223b613a323a7b733a343a226c617374223b733a33343a226d792d6163636f756e742e68746d6c3f7468656d653d63746f2d626f6f7374726170223b733a373a2263757272656e74223b733a33303a226c6f676f75742e68746d6c3f7468656d653d63746f2d626f6f7374726170223b7d733a31303a22636170746368615f3230223b613a333a7b733a333a2273756d223b693a31313b733a333a226b6579223b733a33333a22633036623236313465326335613031643137636532333039656434383562336533223b733a343a2274696d65223b693a313339303134323031313b7d733a32313a22636170746368615f6c6f73745f70617373776f7264223b613a333a7b733a333a2273756d223b693a363b733a333a226b6579223b733a33333a22633634346635353637323565353066653262636138316537653035613731373139223b733a343a2274696d65223b693a313430313236303637373b7d7d, '', NULL, 0, NULL, 0); -INSERT INTO `tl_member` (`id`, `tstamp`, `firstname`, `lastname`, `dateOfBirth`, `gender`, `company`, `street`, `postal`, `city`, `state`, `country`, `phone`, `mobile`, `fax`, `email`, `website`, `language`, `groups`, `login`, `username`, `password`, `assignDir`, `homeDir`, `disable`, `start`, `stop`, `dateAdded`, `lastLogin`, `currentLogin`, `locked`, `session`, `useTwoFactor`, `secret`, `trustedTokenVersion`, `backupCodes`, `loginAttempts`) VALUES(3, 1259754224, 'John', 'Doe', '0', '', '', '', '', '', '', '', '', '', '', 'j.doe@example.com', '', 'en', 0x613a323a7b693a303b733a313a2232223b693a313b733a313a2231223b7d, '1', 'j.doe', '7a86a8cf9d7510cc4661b217133f2eed37981b75', '', 0x00000000000000000000000000000000, '', '', '', 1259754224, 0, 0, 0, 0x613a313a7b733a373a2272656665726572223b613a323a7b733a343a226c617374223b733a31353a222f686973746f72792d312e68746d6c223b733a373a2263757272656e74223b733a313a222f223b7d7d, '', NULL, 0, NULL, 0); - -INSERT INTO `tl_member_group` (`id`, `tstamp`, `name`, `redirect`, `jumpTo`, `disable`, `start`, `stop`) VALUES(1, 1172600419, 'Violin Students', '1', 6, '', '', ''); -INSERT INTO `tl_member_group` (`id`, `tstamp`, `name`, `redirect`, `jumpTo`, `disable`, `start`, `stop`) VALUES(2, 1172600394, 'Piano Students', '1', 7, '', '', ''); -INSERT INTO `tl_member_group` (`id`, `tstamp`, `name`, `redirect`, `jumpTo`, `disable`, `start`, `stop`) VALUES(3, 1367401146, 'general Members', '1', 67, '', '', ''); - -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(371, 17, 1523542648, 'Footer / Copyright', 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', 'html', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:0:{}', '', '', NULL, NULL, '
\n
\n {{theme::content::ODD02/05}}\n
\n
', 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', '', '', '', NULL, '', '', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(372, 17, 1637747701, 'Footer / Main', 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', 'html', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:0:{}', '', '', NULL, NULL, '\n', 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', '', '', '', NULL, '', '', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(373, 17, 1538491237, 'Footer / Navigation', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'customnav', 0, 0, '', '', '', 0, 'nav_default', '', 0x613a353a7b693a303b693a39323b693a313b693a3131383b693a323b693a3130313b693a333b693a3133343b693a343b693a3133393b7d, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:0:{}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', NULL, '', '', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(375, 17, 1528378451, 'Kontaktformular', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:12:\"Ihre Anfrage\";}', 'form', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 6, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:0:{}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', NULL, '', '', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(382, 17, 1644931859, 'Navigationsleiste mit Schräge', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'navigation', 0, 0, '', '', '', 0, 'nav_default_odd', 'mod_navigation_odd_sloping', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:0:{}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', NULL, '', '', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(383, 17, 1538393056, 'Sitemap', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'sitemap', 0, 0, '', '', '', 0, 'nav_makler_sitemap', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:0:{}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', NULL, '', '', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(384, 17, 1538494168, 'Unternavigation', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'navigation', 1, 3, '', '', '', 0, 'nav_default', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:0:{}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"subnav\";}', '', '', NULL, '', '', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(401, 17, 1539334988, 'Module / User / Automatischer Logout', '', 'logout', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', NULL, '', '', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(402, 17, 1539334988, 'Module / User / Konto schließen', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:16:\"Konto schließen\";}', 'closeAccount', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', 'close_deactivate', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', NULL, '', '', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(403, 17, 1539335128, 'Module / User / Login-Formular', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:14:\"Login-Formular\";}', 'login', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 130, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', NULL, '', '', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(404, 17, 1539334988, 'Module / User / Passwort ändern', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:16:\"Passwort ändern\";}', 'changePassword', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', NULL, '', '', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(405, 17, 1539334988, 'Module / User / Passwort vergessen', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:18:\"Passwort vergessen\";}', 'lostPassword', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, 'Sie haben ein neues Passwort für ##domain## angefordert.\n\nBitte klicken Sie ##link## um das neue Passwort festzulegen. Wenn Sie diese E-Mail nicht angefordert haben, kontaktieren Sie bitte den Administrator der Webseite.', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', NULL, '', '', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(406, 17, 1644936081, 'Module / User / Personendaten', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Personendaten\";}', 'personalData', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', 0x613a32303a7b693a303b733a393a2266697273746e616d65223b693a313b733a383a226c6173746e616d65223b693a323b733a31313a22646174654f664269727468223b693a333b733a363a2267656e646572223b693a343b733a373a22636f6d70616e79223b693a353b733a363a22737472656574223b693a363b733a363a22706f7374616c223b693a373b733a343a2263697479223b693a383b733a353a227374617465223b693a393b733a373a22636f756e747279223b693a31303b733a353a2270686f6e65223b693a31313b733a363a226d6f62696c65223b693a31323b733a333a22666178223b693a31333b733a353a22656d61696c223b693a31343b733a373a2277656273697465223b693a31353b733a383a226c616e6775616765223b693a31363b733a363a2267726f757073223b693a31373b733a383a22757365726e616d65223b693a31383b733a383a2270617373776f7264223b693a31393b733a31303a226e6577736c6574746572223b7d, 'member_grouped', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', NULL, '', '', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(407, 17, 1644936092, 'Module / User / Registrierung', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Registrierung\";}', 'registration', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', 0x613a32303a7b693a303b733a393a2266697273746e616d65223b693a313b733a383a226c6173746e616d65223b693a323b733a31313a22646174654f664269727468223b693a333b733a363a2267656e646572223b693a343b733a373a22636f6d70616e79223b693a353b733a363a22737472656574223b693a363b733a363a22706f7374616c223b693a373b733a343a2263697479223b693a383b733a353a227374617465223b693a393b733a373a22636f756e747279223b693a31303b733a353a2270686f6e65223b693a31313b733a363a226d6f62696c65223b693a31323b733a333a22666178223b693a31333b733a353a22656d61696c223b693a31343b733a373a2277656273697465223b693a31353b733a383a226c616e6775616765223b693a31363b733a363a2267726f757073223b693a31373b733a383a22757365726e616d65223b693a31383b733a383a2270617373776f7264223b693a31393b733a31303a226e6577736c6574746572223b7d, 'member_grouped', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '1', '', '', '', NULL, '1', 0, 'Vielen Dank für Ihre Registrierung auf ##domain##.\n\nBitte klicken Sie ##link## um Ihre Registrierung abzuschließen und Ihr Konto zu aktivieren. Wenn Sie keinen Zugang angefordert haben, ignorieren Sie bitte diese E-Mail.', NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', NULL, '', '', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(415, 17, 1539347848, 'Module / Suchmaschine', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', 'search', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', 'a:2:{i:0;s:2:\"48\";i:1;s:4:\"1000\";}', 0, 0, 'advanced', 'search_default', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', NULL, '', '', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(417, 17, 1644831836, 'Navigationsleiste ohne Schräge', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'navigation', 0, 0, '', '', '', 0, 'nav_default_odd', 'mod_navigation_odd', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:0:{}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', NULL, '', '', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(418, 17, 1560846305, 'Modaler Dialog / Text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Überschrift\";}', 'ct_modal', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

', '', 'Modaler Dialog mit Text', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(419, 17, 1560846342, 'Modaler Dialog / Text / vertikal zentriert', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Überschrift\";}', 'ct_modal', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'modal-dialog-centered', '', '

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

', '', 'Modaler Dialog mit Text, vertikal zentriert', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(420, 17, 1560846329, 'Modaler Dialog / Text / langer Text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Überschrift\";}', 'ct_modal', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.+Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.+Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

', '', 'Modaler Dialog mit Text, mit Scrolling', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(421, 17, 1560846373, 'Modaler Dialog / Formular', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Überschrift\";}', 'ct_modal', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'modal-dialog-centered modal-lg', '', '

{{insert_form::8}}

', '', 'Modaler Dialog mit Formular', NULL, NULL, '', 0); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `rootPageDependentModules`, `data`, `reg_deleteDir`, `overviewPage`) VALUES(422, 17, 1560846353, 'Modaler Dialog / Text / vertikal zentriert und breiter', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Überschrift\";}', 'ct_modal', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'modal-dialog-centered modal-lg', '', '

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

', '', 'Modaler Dialog mit Text, vertikal zentriert und breiter', NULL, NULL, '', 0); - -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(90, 0, 384, 1644931274, 'odd - contao theme', 'odd', 'root', 'odd - contao theme', 'de', '', NULL, 'permanent', 0, '', '', '', '', '', '', '1', '', 'd.m.Y', 'H:i', 'd.m.Y H:i', '1', '', '', NULL, '1', 55, 0, '', 604800, 604800, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', '', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '1', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(91, 90, 128, 1540219874, 'Start', 'index', 'regular', 'Odd Theme Demo', '', 'index,follow', 'Auf dieser Seite finden Sie Demo-Inhalte des Odd Themes für das Content-Management-System Contao.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', 'map_default', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(92, 90, 192, 1645107245, 'Module', 'module', 'forward', '', '', 'index,follow', NULL, 'permanent', 129, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 56, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(101, 90, 528, 1555059486, 'Elemente', 'elemente', 'forward', '', '', 'index,follow', NULL, 'permanent', 113, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 56, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', 'theme-inspector', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(105, 90, 896, 1540219814, 'ODD Elements', '', 'folder', '', '', '', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(106, 105, 128, 1538489256, '01 / Kopfzeile', '01-kopfzeile', 'regular', '', '', 'index,follow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(107, 105, 256, 1538489266, '02 / Fußzeile', '02-fußzeile', 'regular', '', '', 'index,follow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(113, 101, 128, 1553272043, 'Textelemente', 'inhaltselemente/textelemente', 'regular', 'Textelemente - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie verschiedene Beispiele wie Textelemente eingebunden werden können.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(114, 101, 256, 1553272043, 'Akkordion', 'inhaltselemente/akkordion', 'regular', 'Akkordion - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel wie ein Akkordion-Element eingebunden werden kann.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(115, 101, 384, 1553272043, 'Content Slider', 'inhaltselemente/content-slider', 'regular', 'Content Slider - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie verschiedene Beispiele wie Content-Slider eingebunden werden können.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 55, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(116, 101, 512, 1553272043, 'Media-Elemente', 'inhaltselemente/media-elemente', 'regular', 'Media-Elemente - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie verschiedene Beispiele wie Media-Elemente, wie z. B. Bildergalerien oder Videos eingebunden werden können.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(118, 90, 352, 1555062182, 'Layouts', 'layouts', 'forward', '', '', 'index,follow', NULL, 'permanent', 161, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(120, 159, 128, 1555059417, 'Layout mit linker Spalte', 'layouts/layout-mit-linker-spalte', 'regular', 'Layout mit linker Spalte - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel einer Seite mit einer linken Spalte.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 56, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(121, 159, 256, 1555059417, 'Layout mit rechter Spalte', 'layouts/layout-mit-rechter-spalte', 'regular', 'Layout mit rechter Spalte - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel einer Seite mit einer rechten Spalte.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 57, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(122, 118, 96, 1555059495, 'Dreispaltiges Layout', 'layouts/dreispaltiges-layout', 'regular', 'Dreispaltiges Layout', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel einer Seite mit einer linken und rechten Spalte.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 58, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(124, 118, 32, 1555059457, 'Einspaltiges Layout', 'layouts/einspaltiges-layout', 'regular', 'Einspaltiges Layout - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel einer Seite mit nur einer Spalte.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 55, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(127, 101, 576, 1553870717, 'Weitere Theme-Elemente', 'theme-elemente', 'regular', 'Theme-Elemente', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Themes für das Content-Management-System Contao finden Sie verschiedene Beispiele wie weitereTheme Elemente eingebunden werden können.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(128, 101, 544, 1553272043, 'Download-Elemente', 'style-guide/download-elemente', 'regular', 'Download-Elemente - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie verschiedene Beispiele wie Download-Elemente eingebunden werden können.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(129, 92, 384, 1553272043, 'Navigation', 'module/navigation', 'regular', 'Navigation - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie die verschiedenen Navigationstypen eingebunden werden können.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(130, 92, 512, 1553272043, 'User', 'module/user', 'regular', 'User - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie User-Module (z. B. Login- und Registrierung) eingebunden werden können.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(133, 92, 896, 1553272043, 'Formulare', 'module/formulare', 'regular', 'Formulare - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie Formulare eingebunden werden kann.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(134, 90, 704, 1553272043, 'Impressum', 'impressum', 'regular', 'Impressum - Mate Theme', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(135, 133, 128, 1574341960, 'Formular-Bestätigung', 'module/anwendungen/formular-bestaetigung', 'regular', 'Ihre Anfrage wurde abgesendet', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 55, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(138, 92, 1024, 1553272043, 'Suche', 'module/suche', 'regular', 'Suche - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie eine Suche eingebunden werden kann.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(139, 90, 800, 1555067757, 'Kontakt', 'kontakt', 'regular', 'Kontakt - Mate Theme', '', 'index,follow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel einer Kontakt-Seite mit Anschrift und Kontaktformular.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 57, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', 'contact', 'map_default', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(140, 90, 64, 1538488861, '404 Seite nicht gefunden', '404-seite-nicht-gefunden', 'error_404', '404 Seite nicht gefunden', '', 'index,follow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', '', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(141, 90, 96, 1560845846, '403 Zugriff verweigert', '403-zugriff-verweigert', 'error_401', '403 Zugriff verweigert', '', 'index,follow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', '', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(150, 156, 512, 1555059538, 'ohne Schräge', 'layouts/headerbild-layouts/ohne-schräge', 'regular', '', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(156, 118, 24, 1555062174, 'Headerbild Layouts', 'layouts/headerbild-layouts', 'forward', '', '', 'noindex,nofollow', NULL, 'permanent', 157, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 56, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(157, 156, 256, 1555059314, 'Schräge nach links', 'layouts/headerbild-layouts/schräge-nach-links', 'regular', '', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(158, 156, 384, 1555059305, 'Schräge nach rechts', 'layouts/headerbild-layouts/schräge-nach-rechts', 'regular', '', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(159, 118, 64, 1555059520, 'Zweispaltiges Layout', 'layouts/zweispaltiges-layout', 'forward', '', '', 'noindex,nofollow', NULL, 'permanent', 120, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', 'map_never', '', '1', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(161, 118, 16, 1575631566, 'Layout mit geradem Header', 'layouts/layout-mit-geradem-header', 'regular', '', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 59, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(162, 118, 256, 1555061298, 'Elemente mit Schrägen', 'layouts/elemente-mit-schrägen', 'regular', '', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `urlPrefix`, `urlSuffix`, `useFolderUrl`, `subpageLayout`, `canonicalKeepParams`, `canonicalLink`, `enableCanonical`, `mailerTransport`, `maintenanceMode`, `routePriority`, `disableLanguageRedirect`) VALUES(164, 92, 1152, 1560781890, 'Modale Dialoge', 'module/modale-dialoge', 'regular', '', '', 'index,follow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', 'map_default', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', '.html', '', 0, '', '', '', '', '', 0, ''); - -INSERT INTO `tl_theme` (`id`, `tstamp`, `name`, `author`, `folders`, `screenshot`, `templates`, `vars`, `pdir_th_short_code`, `pdir_th_license_domain`, `pdir_th_description`) VALUES(17, 1566205456, 'Odd Theme', 'pdir digital agentur // pdir GmbH / Juliane Langer, Philipp Seibt, Mathias Arzberger', NULL, NULL, '', 'a:0:{}', 'odd', '', '<b>pdir contao theme licence</b><br>\nMit dieser <b>Lizenz</b> gekennzeichnete Themes dürfen sowohl privat als auch kommerziell eingesetzt werden. Der Copyright-Link bzw. die Copyright-Links \"<i>ODD Theme by montequesto</i>\" dürfen nicht entfernt oder verändert werden. Das gilt auch wenn Sie das Theme\nnur als Basis für eine Website einsetzen und es verändern.\nMöchten Sie diesen Theme ohne Copyright-Link einsetzen, müssen Sie eine kostenpflichtige Lizenz erwerben.'); -COMMIT; - -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; diff --git a/src/templates/odd_theme_contao_demo_4.9.x_installtool.sql b/src/templates/odd_theme_contao_demo_4.9.x_installtool.sql deleted file mode 100644 index 20893b7..0000000 --- a/src/templates/odd_theme_contao_demo_4.9.x_installtool.sql +++ /dev/null @@ -1,699 +0,0 @@ -SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; -SET AUTOCOMMIT = 0; -START TRANSACTION; -SET time_zone = "+00:00"; - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8mb4 */; - - -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(117, 91, 384, 1560848068, 'Slider', 'slider', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:23:\"slider fullwidth skw-br\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(118, 120, 64, 1554459150, 'Header', 'article-header', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-bl\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(119, 92, 128, 1511440816, 'Module', 'module', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(120, 93, 128, 1511440816, 'News', 'news-120', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(131, 101, 64, 1511440816, 'Slider', 'slider-19', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(132, 101, 128, 1511440816, 'Style Guide', 'style-guide', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(136, 107, 64, 1538489284, '02/01 Adressdaten', '02-01-adressdaten', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', 'ODD02/01'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(137, 107, 96, 1538489300, '02/02 Kontaktdaten', '02-02-kontaktdaten', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', 'ODD02/02'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(138, 107, 112, 1538489313, '02/03 Social Media Icons', '02-03-social-media-icons', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', 'ODD02/03'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(139, 107, 120, 1538489329, '02/04 Footer-Navigation', '02-04-footer-navigation', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', 'ODD02/04'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(140, 107, 124, 1538489341, '02/05 Copyright-Hinweis', '02-05-copyright-hinweis', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', 'ODD02/05'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(145, 106, 512, 1538489196, '01/01 Logo', '01-01-logo', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', 'ODD01/01'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(146, 108, 128, 1511448322, 'News Detailansicht', 'news-details', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(147, 109, 128, 1511440816, 'Events', 'module-events', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(148, 110, 128, 1511440816, 'Event Detailansicht', 'event-details', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(153, 113, 128, 1511440816, 'Textelemente', 'inhaltselemente-textelemente', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(154, 114, 128, 1511440816, 'Akkordion', 'inhaltselemente-akkordion', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(156, 116, 128, 1511440816, 'Media-Elemente', 'inhaltselemente-media-elemente', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(159, 120, 128, 1511440816, 'Layout mit linker Spalte', 'layouts-layout-mit-linker-spalte', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(160, 121, 128, 1511440816, 'Layout mit rechter Spalte', 'layouts-layout-mit-rechter-spalte', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(161, 122, 128, 1511441564, 'Layout mit linker und rechter Spalte', 'layouts-layout-mit-linker-und-rechter-spalte', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(165, 124, 128, 1511442061, 'Einspaltiges Layout', 'layouts-einspaltiges-layout', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(169, 127, 128, 1553878908, 'Weitere ODD Elemente', 'odd-elemente', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(170, 121, 64, 1555059636, 'Header', 'article-header-170', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-bl\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(171, 128, 128, 1511528829, 'Download-Elemente', 'style-guide-download-elemente', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(172, 129, 128, 1511529951, 'Navigation', 'module-navigation', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(173, 130, 128, 1511529962, 'User', 'module-user', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(174, 131, 128, 1511530034, 'Newsletter', 'module-newsletter', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(175, 132, 128, 1511530041, 'FAQ', 'module-faq', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(176, 133, 128, 1511530050, 'Anwendungen', 'module-anwendungen', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(177, 134, 128, 1511532246, 'Impressum', 'impressum', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(178, 135, 128, 1511778176, 'Formular-Bestätigung', 'module-anwendungen-formular-bestaetigung', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(179, 136, 128, 1511949585, 'Newsletter-Details', 'module-newsletter-newsletter-details', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(180, 137, 128, 1511951028, 'FAQ-Details', 'module-faq-faq-details', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(181, 138, 128, 1511953599, 'Suche', 'module-suche', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(182, 106, 640, 1538489223, '01/02 Top Navbar', '01-02-top-navbar', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', 'ODD01/02'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(184, 139, 128, 1555067798, 'Kontaktformular', 'kontakt', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(185, 140, 128, 1516628462, '404 Seite nicht gefunden', '404-seite-nicht-gefunden', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(186, 141, 128, 1516628325, '403 Zugriff verweigert', '403-zugriff-verweigert', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(189, 144, 128, 1517331403, 'Newsletter-Bestätigung', 'newsletter-bestätigung', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(190, 145, 128, 1517391098, 'Newsletter abbestellen', 'newsletter-abbestellen', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(193, 122, 32, 1539349600, 'Header', 'article-header-193', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-bl\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(194, 124, 64, 1539349619, 'Header', 'article-header-194', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-bl\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(197, 91, 512, 1552643358, 'Intro', 'intro', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(198, 91, 640, 1637664098, 'News', 'news', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:24:\"primary-bg skw-tr skw-br\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(199, 91, 768, 1540212382, 'Teaserbox', 'teaserbox', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(201, 108, 64, 1539184777, 'Kopfbild', 'kopfbild', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(202, 110, 64, 1539331237, 'Kopfbild', 'kopfbild-202', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(203, 148, 128, 1539339830, 'Newsletter abonniert', 'module-newsletter-newsletter-abonniert', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(209, 91, 896, 1540221815, 'Contentbox', 'contentbox', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(210, 91, 1024, 1552645291, 'Abschlusstext', 'abschlusstext', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(214, 91, 960, 1553870655, 'Preistabelle', 'preistabelle', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(215, 91, 832, 1553873058, 'Trenner', 'trenner', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(216, 91, 928, 1553873086, 'Trenner', 'trenner-216', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(220, 150, 64, 1554459178, 'Header', 'article-header-220', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(228, 157, 256, 1555328537, 'Header', 'article-header-228', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-bl\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(229, 157, 384, 1555060468, 'Schräge nach links', 'schräge-nach-links', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(230, 158, 256, 1555060311, 'Header', 'article-header-230', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-br\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(231, 158, 384, 1555060458, 'Schräge nach rechts', 'schräge-nach-rechts', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(232, 150, 192, 1555060446, 'ohne Schräge', 'ohne-schräge', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(234, 161, 256, 1555060909, 'Header', 'article-header-234', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-bl\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(235, 161, 384, 1575631587, 'Layout mit geradem Header', 'layout-mit-geradem-header', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(236, 122, 256, 1555061099, 'Rechte Spalte', 'rechte-spalte', 1, 'right', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(237, 162, 128, 1555061650, 'Text', 'text', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(238, 162, 64, 1555061378, 'Header', 'article-header-238', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-br\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(239, 162, 256, 1555061489, 'Schräge / oben rechts / unten rechts', 'schräge-oben-rechts-unten-rechts', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:24:\"primary-bg skw-tr skw-br\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(240, 162, 384, 1555061664, 'Text', 'text-240', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(241, 162, 512, 1555061700, 'Schräge / oben links / unten links', 'schräge-oben-links-unten-links', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:24:\"primary-bg skw-tl skw-bl\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(242, 162, 640, 1555061890, 'Text', 'text-242', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(243, 162, 768, 1555061781, 'Schräge / oben links / unten rechts', 'schräge-oben-links-unten-rechts', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:24:\"primary-bg skw-tl skw-br\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(244, 162, 896, 1555061898, 'Text', 'text-244', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(245, 162, 1024, 1555061840, 'Schräge / oben rechts / unten links', 'schräge-oben-rechts-unten-links', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:24:\"primary-bg skw-tr skw-bl\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(246, 162, 1152, 1555061883, 'Text', 'text-246', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(247, 162, 1280, 1555062292, 'Schräge / oben rechts', 'schräge-oben-rechts', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:17:\"primary-bg skw-tr\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(248, 162, 1408, 1555063442, 'Text', 'text-248', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(251, 139, 256, 1555067790, 'Kontaktdaten', 'kontaktdaten', 1, 'right', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(252, 139, 64, 1555068566, 'Header', 'article-header-252', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-br\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(253, 115, 256, 1560511469, 'Slider', 'slider-2', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:23:\"slider fullwidth skw-br\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(255, 164, 128, 1560781890, 'Modale Dialoge', 'module-modale-dialoge', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); - -INSERT INTO `tl_calendar` (`id`, `tstamp`, `title`, `jumpTo`, `protected`, `groups`, `allowComments`, `notify`, `sortOrder`, `perPage`, `moderate`, `bbcode`, `requireLogin`, `disableCaptcha`) VALUES(4, 1539184097, 'Odd / Events', 110, '', NULL, '', 'notify_admin', 'ascending', 0, '', '', '', ''); - -INSERT INTO `tl_calendar_events` (`id`, `pid`, `tstamp`, `title`, `alias`, `author`, `addTime`, `startTime`, `endTime`, `startDate`, `endDate`, `pageTitle`, `description`, `location`, `address`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `recurring`, `repeatEach`, `repeatEnd`, `recurrences`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `orderEnclosure`) VALUES(22, 4, 1552653016, 'Wohnhaus in der Rosengasse II', 'wohnhaus-in-der-rosengasse-ii', 1, '1', 1520668800, 1520683200, 1520636400, NULL, '', NULL, '', '', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', '1', '', 0xb2d63e05467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', '', '1', 'a:2:{s:4:\"unit\";s:5:\"years\";s:5:\"value\";s:1:\"2\";}', 2530526400, 16, '', '', 'default', 0, 0, '', '', '', '', '1', '', '', NULL); -INSERT INTO `tl_calendar_events` (`id`, `pid`, `tstamp`, `title`, `alias`, `author`, `addTime`, `startTime`, `endTime`, `startDate`, `endDate`, `pageTitle`, `description`, `location`, `address`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `recurring`, `repeatEach`, `repeatEnd`, `recurrences`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `orderEnclosure`) VALUES(23, 4, 1552650339, 'Wohnhaus in der Rosengasse', 'wohnhaus-in-der-rosengasse', 1, '', 1538085600, 1538344799, 1538085600, 1538258400, '', NULL, '', '', '

Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', '1', '', 0xb0b560c5467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', '', '1', 'a:2:{s:4:\"unit\";s:5:\"years\";s:5:\"value\";s:1:\"1\";}', 2145913200, 0, '', '', 'default', 0, 0, '', '', '', '', '1', '', '', NULL); -INSERT INTO `tl_calendar_events` (`id`, `pid`, `tstamp`, `title`, `alias`, `author`, `addTime`, `startTime`, `endTime`, `startDate`, `endDate`, `pageTitle`, `description`, `location`, `address`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `recurring`, `repeatEach`, `repeatEnd`, `recurrences`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `orderEnclosure`) VALUES(24, 4, 1552646068, 'Wohnhaus in der Görnischen Gasse', 'wohnhaus-in-der-görnischen-gasse', 1, '', 1535148000, 1535320799, 1535148000, 1535234400, '', NULL, '', '', '

Dieses Wohnhaus im Stil der Renaissance entstand um 1580.

', '1', '', 0xb525bf9c467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', '', '1', 'a:2:{s:4:\"unit\";s:5:\"years\";s:5:\"value\";s:1:\"1\";}', 2145913200, 0, '', '', 'default', 0, 0, '', '', '', '', '1', '', '', NULL); -INSERT INTO `tl_calendar_events` (`id`, `pid`, `tstamp`, `title`, `alias`, `author`, `addTime`, `startTime`, `endTime`, `startDate`, `endDate`, `pageTitle`, `description`, `location`, `address`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `recurring`, `repeatEach`, `repeatEnd`, `recurrences`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `orderEnclosure`) VALUES(26, 4, 1552645990, 'Hamburger Hof', 'hamburger-hof', 1, '', 1543186800, 1545692399, 1543186800, 1545606000, '', NULL, '', '', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '1', '', 0xc942253a467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', '', '1', 'a:2:{s:4:\"unit\";s:5:\"years\";s:5:\"value\";s:1:\"1\";}', 2145913200, 0, '', '', 'default', 0, 0, '', '', '', '', '1', '', '', NULL); -INSERT INTO `tl_calendar_events` (`id`, `pid`, `tstamp`, `title`, `alias`, `author`, `addTime`, `startTime`, `endTime`, `startDate`, `endDate`, `pageTitle`, `description`, `location`, `address`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `recurring`, `repeatEach`, `repeatEnd`, `recurrences`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `orderEnclosure`) VALUES(27, 4, 1552653008, 'Jahnhalle', 'jahnhalle', 1, '', 1514156400, 1514847599, 1514156400, 1514761200, '', NULL, '', '', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet.

', '1', '', 0xc416cb81467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', '1', 'a:2:{s:4:\"unit\";s:5:\"years\";s:5:\"value\";s:1:\"1\";}', 1767308399, 8, '', NULL, 'default', 0, 0, '', '', '', '', '1', '', '', NULL); -INSERT INTO `tl_calendar_events` (`id`, `pid`, `tstamp`, `title`, `alias`, `author`, `addTime`, `startTime`, `endTime`, `startDate`, `endDate`, `pageTitle`, `description`, `location`, `address`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `recurring`, `repeatEach`, `repeatEnd`, `recurrences`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `published`, `start`, `stop`, `orderEnclosure`) VALUES(28, 4, 1552652995, 'Zuckerwarenfabrik Elbdom', 'zuckerwarenfabrik-elbdom', 1, '1', 1517659200, 1517659200, 1517612400, NULL, '', NULL, '', '', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '1', '', 0xb0ad636c467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', '1', 'a:2:{s:4:\"unit\";s:5:\"years\";s:5:\"value\";s:1:\"1\";}', 1770120000, 8, '', NULL, 'default', 0, 0, '', '', '', '', '1', '', '', NULL); - -INSERT INTO `tl_comments` (`id`, `tstamp`, `source`, `parent`, `date`, `name`, `email`, `website`, `member`, `comment`, `addReply`, `author`, `reply`, `published`, `ip`, `notified`, `notifiedReply`) VALUES(1, 1638439654, 'tl_news', 11, '1638439654', 'Max Mustermann', 'seibt@pdir.de', 'https://www.pdir.de', 0, '

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec.

', '', 0, NULL, '1', '88.76.172.192', '1', ''); - -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(381, 131, 'tl_article', 272, 1488455906, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:52:\"einfaches Bild mit Überschrift und Bildunterschrift\";}', NULL, '', '1', 0x512b86c6ff2011e6ba9f408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', 'mit Klasse \"smaller\" würde das Bild nur 400px hoch sein', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_header', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(382, 153, 'tl_article', 384, 1511280898, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

h1-Überschrift

\n

h2-Überschrift

\n

h3-Überschrift

\n

h4-Überschrift

\n
h5-Überschrift
\n
h6-Überschrift
', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(399, 12, 'tl_news', 128, 1552650130, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Das Kasernengelände in Meißen-Bohnitzsch wurde 1936 angelegt und wurde ab Mai 1945 von der Sowjetunion genutzt. Unter anderem war das 7. Garde-Panzerregiment der GSSD hier untergebracht.

', '', '', 0x6c880b87002611e88700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"300\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '', '', 'left', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(400, 153, 'tl_article', 576, 1539351368, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:89:\"Eine Überschrift mit der Klasse \"bordered-heading\" ist linksbündig und mit Unterstrich\";}', '

Eine Überschrift mit der Klasse \"bordered-heading\"
ist linksbündig und mit Unterstrich

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(401, 153, 'tl_article', 612, 1539351363, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:104:\"Eine Überschrift mit den Klassen \"bordered-heading text-sm-right\" ist rechtsbündig und mit Unterstrich\";}', '

Eine Überschrift mit den Klassen \"bordered-heading right\" ist rechtsbündig und mit Unterstrich

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-sm-right', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(402, 153, 'tl_article', 672, 1539351599, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

[class .col-12 .col-md-6] Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(403, 153, 'tl_article', 720, 1539351609, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

[class .col-12 .col-md-6] Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(404, 153, 'tl_article', 756, 1511282466, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(407, 118, 'tl_article', 128, 1554458686, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:24:\"Layout mit linker Spalte\";}', NULL, '', '', 0xc942253a467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', 'sdsds', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(414, 120, 'tl_article', 128, 1538492221, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 388, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(415, 146, 'tl_article', 128, 1539184159, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 386, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(420, 147, 'tl_article', 128, 1555073753, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 395, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(421, 147, 'tl_article', 64, 1644935706, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 398, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(422, 148, 'tl_article', 128, 1539331022, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 394, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(437, 120, 'tl_article', 512, 1538492248, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 387, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(438, 120, 'tl_article', 384, 1538492247, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 389, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(439, 147, 'tl_article', 256, 1555073754, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 396, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(440, 147, 'tl_article', 384, 1555073755, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 397, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(441, 147, 'tl_article', 96, 1555073751, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 399, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(460, 153, 'tl_article', 768, 1511280660, 'list', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:17:\"nummerierte Liste\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, 'ordered', 0x613a343a7b693a303b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a313b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a323b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a333b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b7d, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(461, 153, 'tl_article', 896, 1511280653, 'list', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:19:\"unnummerierte Liste\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, 'unordered', 0x613a343a7b693a303b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a313b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a323b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a333b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b7d, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(462, 132, 'tl_article', 384, 1511280957, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:11:\"Style Guide\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(463, 153, 'tl_article', 192, 1553878794, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:12:\"Textelemente\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(467, 153, 'tl_article', 1024, 1511284040, 'hyperlink', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:4:\"Link\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '{{link_url::90}}', '', '', 'Normaler Link', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '1', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(468, 153, 'tl_article', 1152, 1511284059, 'toplink', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', 'Top-Link', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '1', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(471, 154, 'tl_article', 128, 1552651351, 'accordionStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', 'Stadterkunden in Meißen auf eine ganz besondere Art', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(472, 154, 'tl_article', 256, 1552651360, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(473, 154, 'tl_article', 384, 1511284664, 'accordionStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(474, 154, 'tl_article', 512, 1552651391, 'accordionStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', 'Erinnerungen', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(475, 154, 'tl_article', 640, 1552651371, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(476, 154, 'tl_article', 768, 1511284674, 'accordionStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(477, 154, 'tl_article', 896, 1552651399, 'accordionStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', 'Botschaften aus der Vergangenheit', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(478, 154, 'tl_article', 1024, 1552651380, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(479, 154, 'tl_article', 1152, 1511284683, 'accordionStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(480, 154, 'tl_article', 64, 1553878812, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:9:\"Akkordion\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(504, 156, 'tl_article', 128, 1553878872, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:14:\"Media-Elemente\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(506, 156, 'tl_article', 512, 1554464836, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Dreispaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"510\";i:1;s:3:\"300\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a363a7b693a303b733a31363a22c09740c7467611e9a91c408d5c22fa41223b693a313b733a31363a22c433b88f467611e9a91c408d5c22fa41223b693a323b733a31363a22b92fb24e467611e9a91c408d5c22fa41223b693a333b733a31363a22c942253a467611e9a91c408d5c22fa41223b693a343b733a31363a22d285349b467611e9a91c408d5c22fa41223b693a353b733a31363a22c416cb81467611e9a91c408d5c22fa41223b7d, 0x613a363a7b693a303b733a31363a22c09740c7467611e9a91c408d5c22fa41223b693a313b733a31363a22c433b88f467611e9a91c408d5c22fa41223b693a323b733a31363a22b92fb24e467611e9a91c408d5c22fa41223b693a333b733a31363a22c942253a467611e9a91c408d5c22fa41223b693a343b733a31363a22d285349b467611e9a91c408d5c22fa41223b693a353b733a31363a22c416cb81467611e9a91c408d5c22fa41223b7d, '', 3, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(507, 156, 'tl_article', 1792, 1555056806, 'youtube', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, 'mfo0iHDrBN8', '', NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(509, 156, 'tl_article', 256, 1539353264, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:24:\"Galerie (Contao)\";}', '

Die Anordnung der Bilder passt sich je nachdem wie viele Spalten ausgewählt sind automatisch an.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(556, 169, 'tl_article', 128, 1553878919, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:20:\"Weitere ODD-Elemente\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(564, 169, 'tl_article', 256, 1516980271, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:11:\"Content Box\";}', '

Die Content Box lässt sich über das Inhaltselement mateContentBox an jeder beliebigen Stelle platzieren. Es kann eine Überschrift, ein Text sowie ein Link/Linktext angegeben werden. Breite und Farben der Boxen werden durch das Vergeben von CSS-Klassen bzw. über die CSS-Datei angepasst.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(565, 169, 'tl_article', 640, 1516980281, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:9:\"Teaserbox\";}', '

Die[nbsp]Teaserbox lässt sich über das Inhaltselement mateTeaserBox an jeder beliebigen Stelle platzieren. Es kann ein Bild, eine Überschrift, ein Text sowie ein Link/Linktext angegeben werden. Die Breite der Boxen[nbsp]kann durch das Vergeben von CSS-Klassen angepasst werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(567, 170, 'tl_article', 128, 1552650880, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:25:\"Layout mit rechter Spalte\";}', NULL, '', '', 0xc09740c7467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(571, 153, 'tl_article', 1408, 1539352121, 'table', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:30:\"Tabelle mit Elementtyp Tabelle\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, 0x613a353a7b693a303b613a333a7b693a303b733a363a22486561642031223b693a313b733a363a22486561642032223b693a323b733a363a22486561642033223b7d693a313b613a333a7b693a303b733a383a22436f6c756d6e2031223b693a313b733a383a22436f6c756d6e2032223b693a323b733a383a22436f6c756d6e2033223b7d693a323b613a333a7b693a303b733a383a22436f6c756d6e2031223b693a313b733a383a22436f6c756d6e2032223b693a323b733a383a22436f6c756d6e2033223b7d693a333b613a333a7b693a303b733a383a22436f6c756d6e2031223b693a313b733a383a22436f6c756d6e2032223b693a323b733a383a22436f6c756d6e2033223b7d693a343b613a333a7b693a303b733a383a22436f6c756d6e2031223b693a313b733a383a22436f6c756d6e2032223b693a323b733a383a22436f6c756d6e2033223b7d7d, '', '1', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(572, 153, 'tl_article', 1536, 1511528123, 'code', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:4:\"Code\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', 'JavaScript', '', '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(573, 153, 'tl_article', 1664, 1511528199, 'markdown', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', '## Markdown\n\nSince Contao 3.3.x Contao ships with the markdown content element. \n\n##### What is Markdown?\n\n> Markdown is a markup language with plain text formatting syntax designed so that it can be converted to HTML and many other formats using a tool by the same name.', '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:8:\"markdown\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(574, 171, 'tl_article', 128, 1553878882, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:17:\"Download-Elemente\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(575, 171, 'tl_article', 256, 1552651865, 'download', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, '', '', 0xb0ad636c467611e9a91c408d5c22fa41, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', 'Einzelnes Download-Element', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '1', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(576, 171, 'tl_article', 384, 1552651907, 'downloads', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:9:\"Downloads\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a363a7b693a303b733a31363a22bd8cb98b467611e9a91c408d5c22fa41223b693a313b733a31363a22d285349b467611e9a91c408d5c22fa41223b693a323b733a31363a22c416cb81467611e9a91c408d5c22fa41223b693a333b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b7d, 0x613a363a7b693a303b733a31363a22bd8cb98b467611e9a91c408d5c22fa41223b693a313b733a31363a22d285349b467611e9a91c408d5c22fa41223b693a323b733a31363a22c416cb81467611e9a91c408d5c22fa41223b693a333b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b7d, '', 4, 0, 0, 'custom', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(577, 120, 'tl_article', 64, 1553875697, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:4:\"News\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(578, 147, 'tl_article', 16, 1553877170, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:6:\"Events\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(580, 172, 'tl_article', 128, 1553877182, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:10:\"Navigation\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(589, 173, 'tl_article', 128, 1553877192, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:4:\"User\";}', '

Test-Zugangsdaten:

\n

User: mate-user
Passwort: mate theme

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(590, 173, 'tl_article', 256, 1539335021, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 403, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(592, 173, 'tl_article', 384, 1539335052, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 407, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(595, 173, 'tl_article', 304, 1539335029, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 404, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(596, 173, 'tl_article', 312, 1539335038, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 405, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(597, 173, 'tl_article', 316, 1539335046, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 406, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(599, 173, 'tl_article', 192, 1516703706, 'text', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:17:\"Test-Zugangsdaten\";}', '

Username: j.smith
Password: johnsmith

\n

Username: d.evans
Password: donnaevans

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(600, 177, 'tl_article', 128, 1525853618, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:9:\"Impressum\";}', '

Verantwortlicher Diensteanbieter im Sinne von § 5 Telemediengesetz (TMG),

\n

Inhaber der Domain www.example-domain.de

\n

Firma
Musterstraße 12
00000 Musterhausen

\n

Telefon: +49 (0)1234 / 5678910
E-Mail: info@example.de

\n

[nbsp]

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(601, 176, 'tl_article', 128, 1553877228, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:11:\"Anwendungen\";}', '

Für das, wie in den folgenden Formularen, dargestellte Upload-Feld, muss das Template form_mate_upload im Formulargenerator bei dem jeweiligen Element ausgewählt werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(602, 176, 'tl_article', 256, 1539346665, 'form', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:30:\"Formular (tabellenlos)\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 6, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(604, 178, 'tl_article', 128, 1511778265, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:30:\"Ihre Anfrage wurde übertragen\";}', '

Ihre Anfrage wurde erfolgreich versendet und wir werden uns in Kürze mit Ihnen in Verbindung setzen.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(605, 174, 'tl_article', 128, 1553877205, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:10:\"Newsletter\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(610, 179, 'tl_article', 128, 1539338156, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 410, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(611, 175, 'tl_article', 128, 1553877216, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:3:\"FAQ\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(612, 175, 'tl_article', 256, 1539344503, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 413, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(613, 175, 'tl_article', 384, 1539344513, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 414, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(614, 180, 'tl_article', 128, 1539344535, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 412, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(616, 181, 'tl_article', 128, 1539347874, 'module', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 415, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(617, 181, 'tl_article', 64, 1553877236, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:5:\"Suche\";}', '

Im Suchmaschinen-Modul muss das Template search_mate ausgewählt werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(625, 120, 'tl_article', 96, 1516979732, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:27:\"News mit Bildern und Teaser\";}', '

Für diese Newsliste muss das Template news_mate_latest ausgewählt werden. Im Modul der Detailansicht muss das Template news_mate_full ausgewählt werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(626, 120, 'tl_article', 256, 1516979739, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:16:\"News ohne Bilder\";}', '

Für diese Newsliste muss das Template news_mate_short[nbsp]ausgewählt werden. Im Modul der Detailansicht muss das Template[nbsp]news_mate_full[nbsp]ausgewählt werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(627, 120, 'tl_article', 448, 1516979744, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:18:\"einfache Newsliste\";}', '

Für die einfache Newsliste wird das Standard-Template news_simple verwendet. Im Modul der Detailansicht muss das Template[nbsp]news_mate_full[nbsp]ausgewählt werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(628, 147, 'tl_article', 112, 1555073752, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:22:\"Eventliste mit Bildern\";}', '

Für die Eventliste mit Bilder muss das Template event_mate_teaser ausgewählt werden. In der Detailansicht muss das Template event_mate_full ausgewählt sein.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(629, 147, 'tl_article', 192, 1555073753, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:22:\"Eventliste ohne Bilder\";}', '

Für die Eventliste[nbsp]ohne Bildern muss das Template event_mate_list[nbsp]ausgewählt werden. In der Detailansicht muss das Template event_mate_full ausgewählt sein.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(630, 147, 'tl_article', 320, 1555073754, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:19:\"einfache Eventliste\";}', '

Für die einfache Eventliste[nbsp]wird das Standard-Template event_upcoming verwendet. In der Detailansicht muss das Template event_mate_full ausgewählt sein.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(639, 172, 'tl_article', 224, 1539334631, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:22:\"Unterseiten-Navigation\";}', '

Navigations-Modul mit der Klasse subnav

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(654, 153, 'tl_article', 648, 1540221151, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(655, 153, 'tl_article', 726, 1540221157, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', '', '', '', '', '', 0, '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(662, 186, 'tl_article', 128, 1516628515, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:24:\"403 - Zugriff verweigert\";}', '

Auf die von Ihnen angeforderte Seite haben Sie leider keinen Zugriff.

\n

Sie könnten stattdessen zur Startseite navigieren oder uns kontaktieren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(663, 185, 'tl_article', 128, 1516628505, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:26:\"404 - Seite nicht gefunden\";}', '

Die von Ihnen angeforderte Seite wurde leider nicht gefunden. Vielleicht haben Sie sich vertippt oder die Seite existiert nicht mehr.

\n

Sie könnten stattdessen zur Startseite navigieren oder uns kontaktieren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(664, 156, 'tl_article', 1664, 1516980207, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"YouTube\";}', '

Damit sich das Video auch auf verschiedenen Endgeräten responsiv verhält, muss bei dem Elementtyp YouTube das Template ce_youtube_mate ausgewählt werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(680, 22, 'tl_calendar_events', 128, 1552650379, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', '', '', '', '', '', 0, '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(681, 23, 'tl_calendar_events', 128, 1552650346, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', '', '', '', '', '', 0, '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(682, 24, 'tl_calendar_events', 128, 1552650363, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Dieses Wohnhaus im Stil der Renaissance entstand um 1580.

', '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', '', '', '', '', '', 0, '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(684, 26, 'tl_calendar_events', 128, 1552650329, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', 0xd5b2a583028211e88700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"400\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', '', '', '', '', '', 0, '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(688, 10, 'tl_news', 128, 1552650042, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Dieses Wohnhaus im Stil der Renaissance entstand um 1580. Noch heute sind aus dieser Zeit zahlreiche Schmuckelemente am Haus erhalten: Tür- und Fenstergewände, Konsolsteine und Deckengewölbe.

', '', '', 0xde74085cfd2011e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"500\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:2:\"15\";s:4:\"unit\";s:2:\"px\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(689, 11, 'tl_news', 128, 1552650025, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', '', '', 0xa09827bfcb5d11e79a22408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:1:\"0\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:2:\"15\";s:4:\"unit\";s:2:\"px\";}', '', '', '', 'left', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(701, 27, 'tl_calendar_events', 128, 1552650410, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet.

', '', '', 0xd05728a0028211e88700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"500\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '', '', 'left', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(702, 28, 'tl_calendar_events', 128, 1552650395, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"300\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:2:\"15\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(706, 23, 'tl_news', 32, 1552650056, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Die Ziegelei am Roten Haus war die letzte ihrer Art in Meißen, sie war nach fast 140 Jahren Produktion 1993 geschlossen worden.

', '', '', 0xa09827bfcb5d11e79a22408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:1:\"0\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:2:\"15\";s:4:\"unit\";s:2:\"px\";}', '', '', '', 'left', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(707, 24, 'tl_news', 128, 1552650073, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Das ehemalige Landkrankenhaus ist seit dem Neubau der Elblandklinik in Meißen-Bohnitzsch ungenutzt.

', '', '', 0x7009c414028811e88700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"700\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:2:\"30\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(708, 25, 'tl_news', 32, 1552650084, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Zum \"Elbdom\"-Areal gehörte in den letzten 20 Jahren auch das Grundstück der Unternehmerfamilie Clemens Kurtz in der Dresdner Straße 19.

', '', '', 0xbeaf67b1028211e88700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"400\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:1:\"0\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '', '', 'left', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(709, 26, 'tl_news', 128, 1552650101, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(721, 159, 'tl_article', 128, 1552650587, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe.[nbsp]929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(724, 159, 'tl_article', 1280, 1539349367, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(725, 159, 'tl_article', 1152, 1517229796, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Letzte Blogeinträge\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(726, 159, 'tl_article', 256, 1552650787, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(735, 190, 'tl_article', 448, 1539341311, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 409, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(743, 159, 'tl_article', 384, 1540220710, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(744, 159, 'tl_article', 1024, 1540220716, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', '', '', '', '', '', 0, '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(745, 159, 'tl_article', 512, 1552650706, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(746, 159, 'tl_article', 640, 1552650714, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(747, 159, 'tl_article', 768, 1552650650, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(748, 159, 'tl_article', 896, 1552650692, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(749, 159, 'tl_article', 320, 1552650561, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(783, 193, 'tl_article', 128, 1555060980, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:20:\"Dreispaltiges Layout\";}', NULL, '', '', 0xae24b6cc467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(784, 194, 'tl_article', 128, 1553878074, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:19:\"Einspaltiges Layout\";}', NULL, '', '', 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(792, 184, 'tl_article', 124, 1555068392, 'form', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 8, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(797, 251, 'tl_article', 128, 1555069654, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:12:\"Kontaktdaten\";}', '

Mustermann GmbH
Musterstraße 12
00000 Musterhausen

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(803, 184, 'tl_article', 64, 1555068611, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:30:\"Bleiben Sie mit uns in Kontakt\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(807, 153, 'tl_article', 1280, 1517820154, 'hyperlink', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '#', '', '', 'Button', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"btn\";}', '', '', '', '', '', NULL, '1', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(810, 145, 'tl_article', 128, 1644834392, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, '', '1', 0xc96d0cf7472811e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"25\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '{{link_url::90|urlattr}}', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(812, 182, 'tl_article', 256, 1553852915, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

info@example.org

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:5:\"email\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', NULL, 'far fa-envelope', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(813, 182, 'tl_article', 384, 1540216548, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:12:\"social-media\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(814, 182, 'tl_article', 512, 1540216554, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(815, 182, 'tl_article', 448, 1540306869, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Facebook

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', 'https://www.facebook.com/', 'fab fa-facebook-f', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(816, 182, 'tl_article', 480, 1540306883, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Twitter

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', 'https://twitter.com/', 'fab fa-twitter', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(817, 182, 'tl_article', 496, 1540306897, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Instagram

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', 'https://www.instagram.com/', 'fab fa-instagram', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(818, 182, 'tl_article', 504, 1540306925, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Pinterest

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', 'https://www.pinterest.de/', 'fab fa-pinterest-p', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(819, 182, 'tl_article', 508, 1540306943, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Linked In

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', 'https://de.linkedin.com/', 'fab fa-linkedin-in', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(820, 136, 'tl_article', 128, 1538490759, 'text', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Adressdaten\";}', '

Musterfirma GmbH
Musterstraße 127
01234 Musterstadt

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(821, 137, 'tl_article', 128, 1553270517, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

+ 49 (0) 0123 4567890

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-phone', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(822, 137, 'tl_article', 256, 1540216645, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

+ 49 (0) 0123 456789

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-mobile', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(823, 137, 'tl_article', 384, 1540216655, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

+ 49 (0) 0123 4567891

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-fax', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(824, 137, 'tl_article', 512, 1540563691, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

info@example.org

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'far fa-envelope', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(825, 137, 'tl_article', 64, 1538491017, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:12:\"Kontaktdaten\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(826, 138, 'tl_article', 128, 1540307110, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Facebook

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-facebook-f', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(827, 138, 'tl_article', 256, 1540307120, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Twitter

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-twitter', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(828, 138, 'tl_article', 384, 1540307160, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Instagram

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-instagram', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(829, 138, 'tl_article', 512, 1540307177, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Pinterest

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-pinterest-p', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(830, 138, 'tl_article', 640, 1540307187, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Linked In

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-linkedin-in', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(831, 138, 'tl_article', 64, 1538491124, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:12:\"Social Media\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(832, 139, 'tl_article', 128, 1538491199, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:9:\"Odd Theme\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(833, 139, 'tl_article', 256, 1538491192, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 373, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(834, 140, 'tl_article', 128, 1560846799, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

© Firma / {{date::Y}} / Odd Theme by montequesto

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(838, 117, 'tl_article', 128, 1553851804, 'sliderStart', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '1', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(839, 117, 'tl_article', 256, 1539088811, 'sliderStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(840, 117, 'tl_article', 192, 1552657173, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Dank der Saalkapazitäten fanden in dem traditionsreichen Haus zahlreiche Großveranstaltungen statt. Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '1', '', 0xc942253a467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Kultur & Freizeit', 'Mehr dazu', '{{event_url::26}}'); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(841, 117, 'tl_article', 224, 1552657262, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Keramikfabrik\";}', '

Bei der Produktion von Kachelöfen, Wandplatten, Porzellanen und Schamotte war Meißen um 1900 führend in Deutschland. Die für Kachelöfen entwickelte Meißner Patentkachel war wohl in den meisten deutschen Wohnzimmern zu finden.

', '1', '', 0xae24b6cc467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Industrie', 'Mehr dazu', '{{link_url::120}}'); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(842, 117, 'tl_article', 208, 1552657181, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '1', '', 0xc416cb81467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Sport', 'Mehr erfahren', '{{event_url::27}}'); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(843, 117, 'tl_article', 248, 1552657268, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:29:\"E-Werk in der Brauhausstraße\";}', '

Das ehemalige Elektrizitätswerk an der Brauhausstraße ging 1911 in Betrieb und lieferte Strom für die Meißner Innenstadt. Nach 1990 wurde das E-Werk stillgelegt und 2004 wurde das Kesselhaus im hinteren Grundstücksbereich abgerissen.

', '1', '', 0xb92fb24e467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Industrie', 'Weiterlesen', '{{link_url::121}}'); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(844, 117, 'tl_article', 216, 1552657188, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:21:\"Kaserne in Bohnitzsch\";}', '

Das Kasernengelände in Meißen-Bohnitzsch wurde 1936 angelegt und wurde ab Mai 1945 von der Sowjetunion genutzt. Unter anderem war das 7. Garde-Panzerregiment der GSSD hier untergebracht.

', '1', '', 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Militär', 'Mehr dazu', '{{news_url::12}}'); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(845, 197, 'tl_article', 128, 1552643659, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:28:\"bordered-heading text-center\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(846, 197, 'tl_article', 256, 1540220465, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(847, 197, 'tl_article', 384, 1540220471, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(848, 197, 'tl_article', 320, 1552644010, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(849, 197, 'tl_article', 352, 1552643989, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(850, 198, 'tl_article', 128, 1539096876, 'module', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Platzhalter für Newsboxen

\n

orem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(851, 199, 'tl_article', 128, 1540215730, 'ct_wrapperStart', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Platzhalter für Teaserboxen

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(853, 199, 'tl_article', 256, 1540215704, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(855, 199, 'tl_article', 224, 1554457312, 'ct_teaserBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:22:\"Ziegelei am Roten Haus\";}', '

Die Spezialität der Ziegelei war zu DDR-Zeiten die Herstellung von Hochlochziegeln - leichten, großformatigen Ziegeln für den Wohnungsbau.

', '1', '', 0xc433b88f467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, 'Mehr dazu', '{{news_url::23}}', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-4', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(856, 199, 'tl_article', 240, 1554457318, 'ct_teaserBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '1', '', 0xb0ad636c467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, 'Mehr dazu', '{{event_url::28}}', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-4', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(859, 198, 'tl_article', 64, 1552662465, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:9:\"Aktuelles\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-center', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(861, 201, 'tl_article', 128, 1539184642, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 393, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(862, 202, 'tl_article', 128, 1539331252, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 400, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(863, 172, 'tl_article', 352, 1539334592, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 384, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(864, 203, 'tl_article', 128, 1539339890, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Vielen Dank!\";}', '

Vielen Dank für die Abonnierung unseres Newsletters. Zur Aktivierung Ihres Abonnements ist es erforderlich, dass Sie den Aktivierungslink in der zugesandten E-Mail anklicken.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:11:\"text-center\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(866, 189, 'tl_article', 128, 1539341275, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 408, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(873, 174, 'tl_article', 256, 1539343980, 'hyperlink', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '{{link_url::144}}', '', '', 'Newsletter abonnieren', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '1', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(874, 174, 'tl_article', 384, 1539343998, 'hyperlink', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '{{link_url::145}}', '', '', 'Newsletter abbestellen', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '1', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(876, 153, 'tl_article', 630, 1553879193, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:101:\"Eine Überschrift mit den Klassen \"bordered-heading text-sm-center\" ist zentriert und mit Unterstrich\";}', '

Eine Überschrift mit den Klassen \"bordered-heading right\" ist rechtsbündig und mit Unterstrich

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-sm-center', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(877, 153, 'tl_article', 1472, 1539352288, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:27:\"Tabelle mit Elementtyp Text\";}', '\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Column 1Column 2Column 3
Column 1Column 2Column 3
Column 1Column 2Column 3
Verbundene Zeilen
', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(885, 209, 'tl_article', 256, 1554457368, 'ct_contentBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Dank der Saalkapazitäten fanden in dem traditionsreichen Haus zahlreiche Großveranstaltungen statt. Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-3\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr dazu', '{{event_url::26}}', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(886, 209, 'tl_article', 128, 1540222509, 'ct_wrapperStart', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Platzhalter für Teaserboxen

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"row no-margin\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit der Klasse \'row\'', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(887, 209, 'tl_article', 640, 1540215843, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(889, 199, 'tl_article', 160, 1554457306, 'ct_teaserBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:19:\"Das Landkrankenhaus\";}', '

Das ehemalige Landkrankenhaus ist seit dem Neubau der Elblandklinik in Meißen-Bohnitzsch ungenutzt.

', '1', '', 0xce7c80c2467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, 'Mehr dazu', '{{news_url::24}}', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(890, 209, 'tl_article', 384, 1552652907, 'ct_contentBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Keramikfabrik\";}', '

Bei der Produktion von Kachelöfen, Wandplatten, Porzellanen und Schamotte war Meißen um 1900 führend in Deutschland. Die für Kachelöfen entwickelte Meißner Patentkachel war wohl in den meisten deutschen Wohnzimmern zu finden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-3\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr dazu', '{{link_url::120}}', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(892, 182, 'tl_article', 64, 1553852907, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

+ 49 (0) 123 45678

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:5:\"phone\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', NULL, 'fas fa-phone', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(893, 169, 'tl_article', 768, 1553879082, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:22:\"Preis-Tabelle 3 stufig\";}', '

Beispiel 1:

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(894, 169, 'tl_article', 896, 1540307443, 'ct_priceBox', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"Paket A\";}', '

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', 'Mehr Infos', '{{link_url::90}}', 'Jetzt bestellen', '{{link_url::90}}', 'pro Monat, zzgl. MwSt.', '99,99 €', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(895, 169, 'tl_article', 832, 1540301947, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"row no-margin\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(896, 169, 'tl_article', 1024, 1540217731, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(897, 169, 'tl_article', 960, 1540307450, 'ct_priceBox', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"Paket B\";}', '

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', 'Am beliebtesten', 'Mehr Infos', '90', 'Jetzt bestellen', '90', 'pro Monat, zzgl. MwSt.', '249,99 €', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(898, 169, 'tl_article', 992, 1540219169, 'ct_priceBox', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"Paket C\";}', '

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', 'Mehr Infos', '90', 'Jetzt bestellen', '90', 'pro Monat, zzgl. MwSt.', '49,99 €', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(899, 169, 'tl_article', 1152, 1540219594, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:19:\"Einfache Inhaltsbox\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(900, 169, 'tl_article', 1280, 1552652309, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:24:\"Stadterkunden in Meißen\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(901, 169, 'tl_article', 1216, 1540219647, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(902, 169, 'tl_article', 1408, 1540219653, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(903, 169, 'tl_article', 1344, 1552652333, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:12:\"Erinnerungen\";}', '

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(904, 169, 'tl_article', 704, 1540219734, 'ct_wrapperStart', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Platzhalter für Teaserboxen

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(905, 169, 'tl_article', 736, 1552652219, 'ct_teaserBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:19:\"Wohnhaus Rosengasse\";}', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', '1', '', 0xb81fbc97467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, 'Mehr dazu', '90', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(906, 169, 'tl_article', 752, 1552652238, 'ct_teaserBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Keramikfabrik\";}', '

Bei der Produktion von Kachelöfen, Wandplatten, Porzellanen und Schamotte war Meißen um 1900 führend in Deutschland. Die für Kachelöfen entwickelte Meißner Patentkachel war wohl in den meisten deutschen Wohnzimmern zu finden.

', '1', '', 0xae24b6cc467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, 'Mehr dazu', '90', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-4', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(907, 169, 'tl_article', 760, 1552652257, 'ct_teaserBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '1', '', 0xc416cb81467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, 'Mehr dazu', '90', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-4', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(908, 169, 'tl_article', 764, 1540219734, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(909, 169, 'tl_article', 448, 1540219772, 'ct_wrapperStart', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie)', '

Platzhalter für Teaserboxen

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit der Klasse \'row\'', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(910, 169, 'tl_article', 544, 1552652156, 'ct_contentBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr dazu', '90', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(911, 169, 'tl_article', 592, 1552652166, 'ct_contentBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Keramikfabrik\";}', '

Bei der Produktion von Kachelöfen, Wandplatten, Porzellanen und Schamotte war Meißen um 1900 führend in Deutschland. Die für Kachelöfen entwickelte Meißner Patentkachel war wohl in den meisten deutschen Wohnzimmern zu finden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr dazu', '90', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(912, 169, 'tl_article', 616, 1552652180, 'ct_contentBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:19:\"Wohnhaus Rosengasse\";}', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr dazu', '90', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(913, 169, 'tl_article', 628, 1540219772, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(914, 209, 'tl_article', 512, 1554457380, 'ct_contentBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:19:\"Wohnhaus Rosengasse\";}', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-3\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr erfahren', '{{news_url::11}}', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(915, 209, 'tl_article', 352, 1552652897, 'ct_contentBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-3\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr dazu', '{{event_url::27}}', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(917, 169, 'tl_article', 1088, 1553879106, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:21:\"Preistabelle 2 stufig\";}', '

Beispiel 1:

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(918, 169, 'tl_article', 1120, 1540301976, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"row no-margin\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(919, 169, 'tl_article', 1136, 1540302061, 'ct_priceBox', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"Paket A\";}', '

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-6\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', 'Mehr Infos', '90', 'Jetzt bestellen', '90', 'pro Monat, zzgl. MwSt.', '99,99 €', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(920, 169, 'tl_article', 1144, 1540302044, 'ct_priceBox', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"Paket B\";}', '

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-6\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', 'Mehr Infos', '90', 'Jetzt bestellen', '90', 'pro Monat, zzgl. MwSt.', '249,99 €', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(922, 169, 'tl_article', 1150, 1540301976, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(927, 210, 'tl_article', 256, 1540306574, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(928, 210, 'tl_article', 320, 1553869218, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Diese Räumlichkeiten sind Zeitdokumente. Ihre Ablichtung vielleicht die letzte vor dem endgültigen Abriss oder vor einer Sanierung, die alle Spuren der Vergangenheit verwischen werden. Sie wurden sorgfältig dokumentiert, ohne am Ort etwas zu verändern. Da die Fotografien grundsätzlich im - oft sehr spärlichen - natürlichen Licht vor Ort aufgenommen wurden, kam meist die HDR-Technik zum Einsatz, die

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(929, 210, 'tl_article', 352, 1553869224, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Abbildungen mit hocher Farbintensität und fast malerischem Flair hervorbringt. Die Bilder entstanden im Einverständnis der jeweiligen Grundstückseigentümer.
Der Autor dankt allen, die ihm den Besuch dieser verlassenen Orte ermöglichten und der Veröffentlichung der dort entstandenen Aufnahmen zustimmten.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(930, 210, 'tl_article', 384, 1540306574, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(931, 117, 'tl_article', 252, 1552657274, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"VEB Ziegelwerk Rotes Haus\";}', '

Die Ziegelei am Roten Haus war die letzte ihrer Art in Meißen, sie war nach fast 140 Jahren Produktion 1993 geschlossen worden.

', '1', '', 0xc09740c7467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Industrie', 'Weiterlesen', '{{news_url::23}}'); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(933, 210, 'tl_article', 512, 1553875181, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:5:\"quote\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(934, 160, 'tl_article', 128, 1552650990, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe.[nbsp]929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(935, 160, 'tl_article', 256, 1552650983, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(936, 160, 'tl_article', 384, 1552650995, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(937, 160, 'tl_article', 512, 1552650983, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(938, 160, 'tl_article', 640, 1552651001, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(939, 160, 'tl_article', 768, 1552651007, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(940, 160, 'tl_article', 896, 1552651013, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(941, 160, 'tl_article', 1024, 1552651018, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(942, 160, 'tl_article', 1152, 1552650983, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', '', '', '', '', '', 0, '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(943, 160, 'tl_article', 1280, 1552651024, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Letzte Blogeinträge\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(944, 160, 'tl_article', 1408, 1552650983, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(945, 161, 'tl_article', 128, 1552651039, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe.[nbsp]929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(946, 161, 'tl_article', 256, 1552651034, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(947, 161, 'tl_article', 384, 1552651047, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(948, 161, 'tl_article', 512, 1552651034, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(949, 161, 'tl_article', 640, 1552651092, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(950, 161, 'tl_article', 768, 1552651098, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(951, 161, 'tl_article', 896, 1552651105, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(952, 161, 'tl_article', 1024, 1552651111, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(953, 161, 'tl_article', 1152, 1552651034, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', '', '', '', '', '', 0, '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(954, 161, 'tl_article', 1280, 1552651122, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Letzte Blogeinträge\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(955, 161, 'tl_article', 1408, 1552651034, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(956, 165, 'tl_article', 128, 1552651144, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe.[nbsp]929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(957, 165, 'tl_article', 256, 1552651140, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(958, 165, 'tl_article', 384, 1552651150, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(959, 165, 'tl_article', 512, 1552651140, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(960, 165, 'tl_article', 640, 1552651155, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(961, 165, 'tl_article', 768, 1552651161, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(962, 165, 'tl_article', 896, 1552651166, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(963, 165, 'tl_article', 1024, 1552651172, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(964, 165, 'tl_article', 1152, 1552651140, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', '', '', '', '', '', 0, '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(965, 165, 'tl_article', 1280, 1552651187, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Letzte Blogeinträge\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(966, 165, 'tl_article', 1408, 1552651140, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(978, 156, 'tl_article', 640, 1554464808, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Vierspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a343a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b7d, 0x613a343a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b7d, '', 4, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(986, 169, 'tl_article', 1536, 1552653271, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-home', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(987, 169, 'tl_article', 1664, 1552653413, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-check', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(988, 169, 'tl_article', 1472, 1552653438, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:14:\"Text mit Icons\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(989, 199, 'tl_article', 64, 1553867230, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:14:\"Die Highlights\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:28:\"bordered-heading text-center\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(990, 210, 'tl_article', 128, 1553877648, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:28:\"bordered-heading text-center\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(991, 210, 'tl_article', 640, 1553868952, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Alle Fotos © Claus-Dirk Langer, Dresden/Meißen

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(998, 214, 'tl_article', 64, 1553870516, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"row no-margin\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(999, 214, 'tl_article', 116, 1553873824, 'ct_priceBox', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Urban Exploring Foto-Reise\";}', '

Hin und Rückfahrt

\n

5 tägige Abenteuerreise

\n

Übernachtung und volle Verpflegung

\n

Urbexplorer/örtlicher Guide

\n

Urbexplorer Expeditionsfahrzeug

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', 'Am beliebtesten', 'Mehr Infos', '{{link_url::93}}', 'Jetzt bestellen', '{{link_url::139}}', 'max. 7 Personen', '550 €', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1000, 214, 'tl_article', 112, 1553873803, 'ct_priceBox', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Urban Exploring Foto-Tour\";}', '

bis zu 10 Stunden fotografieren

\n

3 atemberaubende Industrieobjekte

\n

Übernachtung mit Frühstück

\n

Mitfahrgelegenheit

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', 'Mehr Infos', '{{link_url::93}}', 'Jetzt bestellen', '{{link_url::139}}', 'pro Person, inkl. MwSt.', '180 €', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1001, 214, 'tl_article', 120, 1553873842, 'ct_priceBox', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:30:\"Urban Exploring Foto-Abenteuer\";}', '

9 Tage Fotoabenteuer

\n

inclusive Flug von Deutschland

\n

Übernachtung in Guesthouses

\n

deutschsprachiger Guide von Urbexplorer

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', 'Mehr Infos', '{{link_url::93}}', 'Jetzt bestellen', '{{link_url::139}}', 'Gruppenrabatt möglich', '1.490 €', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1002, 214, 'tl_article', 124, 1553870516, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1003, 215, 'tl_article', 128, 1553873070, 'html', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', '
', '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', '
', '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:8:\"bordered\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1006, 216, 'tl_article', 128, 1553873079, 'html', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', '
', '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', '
', '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:8:\"bordered\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1007, 156, 'tl_article', 384, 1554464827, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Zweispaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"510\";i:1;s:3:\"200\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a323a7b693a303b733a31363a22b92fb24e467611e9a91c408d5c22fa41223b693a313b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b7d, 0x613a323a7b693a303b733a31363a22b92fb24e467611e9a91c408d5c22fa41223b693a313b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b7d, '', 2, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1020, 220, 'tl_article', 128, 1554459204, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:24:\"Headerbild ohne Schräge\";}', NULL, '', '', 0xc942253a467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"16\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', 'sdsds', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1022, 156, 'tl_article', 768, 1554464897, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:12:\"Fünfspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a353a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b7d, 0x613a353a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b7d, '', 5, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1023, 156, 'tl_article', 896, 1554464908, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Sechspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a363a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b7d, 0x613a363a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b7d, '', 6, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1024, 156, 'tl_article', 1024, 1554464918, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:13:\"Siebenspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a373a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b7d, 0x613a373a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b7d, '', 7, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1025, 156, 'tl_article', 1152, 1554464925, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Achtspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a383a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b7d, 0x613a383a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b7d, '', 8, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1026, 156, 'tl_article', 1280, 1554464985, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Neunspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a393a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a383b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b7d, 0x613a393a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a383b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b7d, '', 9, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1027, 156, 'tl_article', 1408, 1554464993, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Zehnspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a31303a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a383b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b693a393b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b7d, 0x613a31303a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a383b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b693a393b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b7d, '', 10, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1028, 156, 'tl_article', 1472, 1554465027, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:10:\"Elfspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a31313a7b693a303b733a31363a22c09740c7467611e9a91c408d5c22fa41223b693a313b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a323b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a333b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a343b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a353b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a363b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a373b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a383b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a393b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b693a31303b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b7d, 0x613a31313a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a383b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b693a393b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b693a31303b733a31363a22c09740c7467611e9a91c408d5c22fa41223b7d, '', 11, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1029, 156, 'tl_article', 1504, 1554465044, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:13:\"Zwölfspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a31323a7b693a303b733a31363a22c09740c7467611e9a91c408d5c22fa41223b693a313b733a31363a22c433b88f467611e9a91c408d5c22fa41223b693a323b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a333b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a343b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a353b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a363b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a373b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a383b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a393b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a31303b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b693a31313b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b7d, 0x613a31323a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a383b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b693a393b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b693a31303b733a31363a22c09740c7467611e9a91c408d5c22fa41223b693a31313b733a31363a22c433b88f467611e9a91c408d5c22fa41223b7d, '', 12, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1033, 228, 'tl_article', 128, 1555060408, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:34:\"Headerbild mit Schräge nach links\";}', NULL, '', '', 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1034, 229, 'tl_article', 128, 1555059685, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe.[nbsp]929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1035, 229, 'tl_article', 256, 1555059685, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1036, 229, 'tl_article', 384, 1555059685, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1037, 229, 'tl_article', 512, 1555059685, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1038, 229, 'tl_article', 640, 1555059685, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1039, 229, 'tl_article', 768, 1555059685, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1040, 229, 'tl_article', 896, 1555059685, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1041, 229, 'tl_article', 1024, 1555059685, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1042, 229, 'tl_article', 1152, 1555059685, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', '', '', '', '', '', 0, '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1043, 229, 'tl_article', 1280, 1555059685, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Letzte Blogeinträge\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1044, 229, 'tl_article', 1408, 1555059685, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1045, 230, 'tl_article', 128, 1555060418, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:35:\"Headerbild mit Schräge nach rechts\";}', NULL, '', '', 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1046, 231, 'tl_article', 128, 1555060297, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe.[nbsp]929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1047, 231, 'tl_article', 256, 1555060297, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1048, 231, 'tl_article', 384, 1555060297, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1049, 231, 'tl_article', 512, 1555060297, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1050, 231, 'tl_article', 640, 1555060297, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1051, 231, 'tl_article', 768, 1555060297, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1052, 231, 'tl_article', 896, 1555060297, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1053, 231, 'tl_article', 1024, 1555060297, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1054, 231, 'tl_article', 1152, 1555060297, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', '', '', '', '', '', 0, '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1055, 231, 'tl_article', 1280, 1555060297, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Letzte Blogeinträge\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1056, 231, 'tl_article', 1408, 1555060297, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1057, 232, 'tl_article', 128, 1555060437, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe.[nbsp]929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1058, 232, 'tl_article', 256, 1555060437, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1059, 232, 'tl_article', 384, 1555060437, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1060, 232, 'tl_article', 512, 1555060437, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1061, 232, 'tl_article', 640, 1555060437, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1062, 232, 'tl_article', 768, 1555060437, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1063, 232, 'tl_article', 896, 1555060437, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1064, 232, 'tl_article', 1024, 1555060437, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1065, 232, 'tl_article', 1152, 1555060437, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', '', '', '', '', '', 0, '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1066, 232, 'tl_article', 1280, 1555060437, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Letzte Blogeinträge\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1067, 232, 'tl_article', 1408, 1555060437, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1068, 234, 'tl_article', 128, 1575631603, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:25:\"Layout mit geradem Header\";}', NULL, '', '', 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1069, 235, 'tl_article', 128, 1555060887, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe.[nbsp]929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1070, 235, 'tl_article', 256, 1555060887, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1071, 235, 'tl_article', 384, 1555060887, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1072, 235, 'tl_article', 512, 1555060887, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1073, 235, 'tl_article', 640, 1555060887, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1074, 235, 'tl_article', 768, 1555060887, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1075, 235, 'tl_article', 896, 1555060887, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1076, 235, 'tl_article', 1024, 1555060887, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1077, 235, 'tl_article', 1152, 1555060887, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', '', '', '', '', '', 0, '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1078, 235, 'tl_article', 1280, 1555060887, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Letzte Blogeinträge\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1079, 235, 'tl_article', 1408, 1555060887, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1081, 238, 'tl_article', 128, 1555061396, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:22:\"Elemente mit Schrägen\";}', NULL, '', '', 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1082, 239, 'tl_article', 64, 1555061513, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:37:\"Schräge - oben rechts - unten rechts\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-center', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1083, 239, 'tl_article', 128, 1555061529, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1085, 237, 'tl_article', 256, 1555061622, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1086, 240, 'tl_article', 256, 1555061657, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1087, 241, 'tl_article', 64, 1555061727, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:35:\"Schräge - oben links - unten links\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-center', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1088, 241, 'tl_article', 128, 1555061671, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1089, 242, 'tl_article', 256, 1555061752, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1090, 243, 'tl_article', 64, 1555061799, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:36:\"Schräge - oben links - unten rechts\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-center', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1091, 243, 'tl_article', 128, 1555061752, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1092, 244, 'tl_article', 256, 1555061752, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1093, 245, 'tl_article', 64, 1555061872, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:36:\"Schräge - oben rechts - unten links\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-center', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1094, 245, 'tl_article', 128, 1555061752, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1095, 246, 'tl_article', 256, 1555061878, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1096, 247, 'tl_article', 64, 1555062327, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Schräge - nur oben rechts\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-center', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1097, 247, 'tl_article', 128, 1555062276, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1098, 248, 'tl_article', 256, 1555062276, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1099, 236, 'tl_article', 256, 1555062388, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Letzte Blogeinträge\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1100, 236, 'tl_article', 384, 1555062381, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1104, 252, 'tl_article', 128, 1555068558, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:7:\"Kontakt\";}', NULL, '', '', 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1105, 251, 'tl_article', 256, 1555068793, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:12:\"Social Media\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1106, 251, 'tl_article', 384, 1555068772, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Facebook

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-facebook-f', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1107, 251, 'tl_article', 512, 1555068772, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Twitter

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-twitter', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1108, 251, 'tl_article', 640, 1555068772, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Instagram

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-instagram', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1109, 251, 'tl_article', 768, 1555068772, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Pinterest

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-pinterest-p', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1110, 251, 'tl_article', 896, 1555068772, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Linked In

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-linkedin-in', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1111, 251, 'tl_article', 320, 1555069491, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"contact-icons\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1112, 251, 'tl_article', 1024, 1555068866, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1113, 251, 'tl_article', 192, 1555069533, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

+ 49 (0) 0123 4567890

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-phone', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1114, 251, 'tl_article', 224, 1555069533, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

+ 49 (0) 0123 456789

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-mobile', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1115, 251, 'tl_article', 240, 1555069533, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

+ 49 (0) 0123 4567891

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-fax', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1116, 251, 'tl_article', 248, 1555069534, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

info@example.org

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'far fa-envelope', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1117, 251, 'tl_article', 160, 1555069542, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"contact-icons\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1118, 251, 'tl_article', 252, 1555069547, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1119, 253, 'tl_article', 128, 1560511460, 'sliderStart', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '1', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1120, 253, 'tl_article', 192, 1560511460, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Dank der Saalkapazitäten fanden in dem traditionsreichen Haus zahlreiche Großveranstaltungen statt. Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '1', '', 0xc942253a467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Kultur & Freizeit', 'Mehr dazu', '{{event_url::26}}'); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1121, 253, 'tl_article', 208, 1560511460, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '1', '', 0xc416cb81467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Sport', 'Mehr erfahren', '{{event_url::27}}'); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1122, 253, 'tl_article', 216, 1560511460, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:21:\"Kaserne in Bohnitzsch\";}', '

Das Kasernengelände in Meißen-Bohnitzsch wurde 1936 angelegt und wurde ab Mai 1945 von der Sowjetunion genutzt. Unter anderem war das 7. Garde-Panzerregiment der GSSD hier untergebracht.

', '1', '', 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Militär', 'Mehr dazu', '{{news_url::12}}'); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1123, 253, 'tl_article', 224, 1560511460, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Keramikfabrik\";}', '

Bei der Produktion von Kachelöfen, Wandplatten, Porzellanen und Schamotte war Meißen um 1900 führend in Deutschland. Die für Kachelöfen entwickelte Meißner Patentkachel war wohl in den meisten deutschen Wohnzimmern zu finden.

', '1', '', 0xae24b6cc467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Industrie', 'Mehr dazu', '{{link_url::120}}'); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1124, 253, 'tl_article', 248, 1560511460, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:29:\"E-Werk in der Brauhausstraße\";}', '

Das ehemalige Elektrizitätswerk an der Brauhausstraße ging 1911 in Betrieb und lieferte Strom für die Meißner Innenstadt. Nach 1990 wurde das E-Werk stillgelegt und 2004 wurde das Kesselhaus im hinteren Grundstücksbereich abgerissen.

', '1', '', 0xb92fb24e467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Industrie', 'Weiterlesen', '{{link_url::121}}'); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1125, 253, 'tl_article', 252, 1560511460, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"VEB Ziegelwerk Rotes Haus\";}', '

Die Ziegelei am Roten Haus war die letzte ihrer Art in Meißen, sie war nach fast 140 Jahren Produktion 1993 geschlossen worden.

', '1', '', 0xc09740c7467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Industrie', 'Weiterlesen', '{{news_url::23}}'); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1126, 253, 'tl_article', 256, 1560511460, 'sliderStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1129, 255, 'tl_article', 128, 1560782354, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:14:\"Modale Dialoge\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', 'none', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1130, 255, 'tl_article', 256, 1560782390, 'module', 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 418, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', 'none', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1131, 255, 'tl_article', 384, 1560783378, 'module', 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 419, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', 'none', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1132, 255, 'tl_article', 512, 1560783579, 'module', 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 420, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', 'none', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1133, 255, 'tl_article', 640, 1560783641, 'module', 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 421, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', 'none', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1134, 255, 'tl_article', 448, 1560843081, 'module', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 422, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', 'none', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1135, 197, 'tl_article', 64, 1641290342, 'module', 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 423, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', '', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', NULL, NULL, NULL); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `com_template`, `com_requireLogin`, `com_disableCaptcha`, `com_bbcode`, `com_moderate`, `com_perPage`, `com_order`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1137, 156, 'tl_article', 192, 1644934174, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:10:\"Referenzen\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"510\";i:1;s:3:\"200\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a323a7b693a303b733a31363a22b92fb24e467611e9a91c408d5c22fa41223b693a313b733a31363a22c09740c7467611e9a91c408d5c22fa41223b7d, 0x613a323a7b693a303b733a31363a22b92fb24e467611e9a91c408d5c22fa41223b693a313b733a31363a22c09740c7467611e9a91c408d5c22fa41223b7d, '', 2, 0, 0, 'custom', '', 'gallery_default_references', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', 'com_default', '', '', '', '', 0, 'ascending', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); - -INSERT INTO `tl_faq` (`id`, `pid`, `sorting`, `tstamp`, `question`, `alias`, `author`, `answer`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `noComments`, `published`, `orderEnclosure`) VALUES(8, 5, 32, 1511950486, 'Do your users have any questions?', '', 1, '

To display the FAQ on your website you can choose from three modules in the Contao back-end. Those offer the possibility to configure the output of your frequently asked questions in various ways.

\n
    \n
  • FAQ - List
  • \n
  • FAQ - Reader
  • \n
  • FAQ - Page
  • \n
\n

The FAQ - List is a frontend module that lets you[nbsp]list your questions and answers from chosen categories. Only the title question and a link to the FAQ - Reader (which needs to be placed on a secondary site) are[nbsp]displayed. It might be a good option to choose this ouput if you have a longer list of questions.

\n

Another way to display information to the visitors is the FAQ - Page module. This module lists all your questions and answers on one page. Linking to another site is not necessary and therefore it is recommanded if you want to show just a few questions and keep all the information on one site. With a little additional code in the mod_faqpage.html5 template you can easily integrate a[nbsp]javascript[nbsp]accordion which will improve the usability of your FAQ greatly for your visitors.

', '', '', 0x00000000000000000000000000000000, '', '', '', '', '', '', '', '', '', NULL, '', '1', NULL); -INSERT INTO `tl_faq` (`id`, `pid`, `sorting`, `tstamp`, `question`, `alias`, `author`, `answer`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `noComments`, `published`, `orderEnclosure`) VALUES(9, 5, 64, 1511950487, 'You have to answer the same over and over?', '', 1, '

Every single question and answer allows you to display a title question and a text (of course). You can also add an image and/or an enclosure next to your FAQ item. The predefined fields allow you to set an author of the item and lets you choose if you want to publish the item right away or keep it unpublished for the time being.

', '', '', 0x00000000000000000000000000000000, '', '', '', '', '', '', '', '', '', NULL, '', '1', NULL); -INSERT INTO `tl_faq` (`id`, `pid`, `sorting`, `tstamp`, `question`, `alias`, `author`, `answer`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `noComments`, `published`, `orderEnclosure`) VALUES(10, 5, 256, 1511950488, 'You want to hear the opinions of the website members?', '', 1, '

The FAQ also enable you to manage comments. With the tick on the checkbox \"Enable comments\"in your FAQ category configuration you allow your visitors to leave comments on your FAQs. Different options are integrated to fit your needs regarding the workflow of submitted comments.

\n
    \n
  • Moderate comments
  • \n
  • Get notified when a comment is posted (you can notify the System administrator, the author of the FAQ or both)
  • \n
  • Set the ordering and the \"Comments per page\", which automatically creates a pagination
  • \n
  • Allow your visitors to use BBCode within the comment field
  • \n
', '', '', 0x00000000000000000000000000000000, '', '', '', '', '', '', '', '', '', NULL, '', '1', NULL); - -INSERT INTO `tl_faq_category` (`id`, `tstamp`, `title`, `headline`, `jumpTo`, `allowComments`, `notify`, `sortOrder`, `perPage`, `moderate`, `bbcode`, `requireLogin`, `disableCaptcha`) VALUES(5, 1539344484, 'Odd / FAQ', 'FAQ', 137, '1', 'notify_admin', 'ascending', 0, '', '', '', ''); - -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(718, NULL, 1538489608, 0x5556381bc64d11e88ff2408d5c22fa41, 'folder', 'files/odd', '', 'c62b1ec4b5c5a4e2a186bce08cb64b48', '1', 'odd', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(720, 0x5556381bc64d11e88ff2408d5c22fa41, 1538489691, 0x86ee99abc64d11e88ff2408d5c22fa41, 'folder', 'files/odd/img', '', '079c14b1399536cf8514e64cb93453ed', '1', 'img', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(755, 0x86ee99abc64d11e88ff2408d5c22fa41, 1552579599, 0x267f1df5467311e9a91c408d5c22fa41, 'folder', 'files/odd/img/verlassene-orte-meissen', '', '5652813e47ef238e3e5e167a24da3428', '1', 'verlassene-orte-meissen', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(796, 0x267f1df5467311e9a91c408d5c22fa41, 1553878188, 0xae24b6cc467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/keramikfabrik.jpg', 'jpg', 'b477fb4521e9dea4d4ccf8cddc88bdb5', '1', 'keramikfabrik.jpg', 0.00048828125, 0.243401759531, 0.99951171875, 0.593108504399, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(797, 0x267f1df5467311e9a91c408d5c22fa41, 1552658157, 0xb0ad636c467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/zuckerwarenfabrik-elbdom.jpg', 'jpg', '01b19ac855e4dc1edf18a048cfaa8100', '1', 'zuckerwarenfabrik-elbdom.jpg', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(798, 0x267f1df5467311e9a91c408d5c22fa41, 1552658153, 0xb0b560c5467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/wohnhaus-rosengasse-1.jpg', 'jpg', '6b30092e92ea58c487f633022bdafa7a', '1', 'wohnhaus-rosengasse-1.jpg', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(799, 0x267f1df5467311e9a91c408d5c22fa41, 1552658156, 0xb2d63e05467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/wohnhaus-rosengasse-3.jpg', 'jpg', '33416ee1cda94de335dba34bfe8c34ee', '1', 'wohnhaus-rosengasse-3.jpg', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(800, 0x267f1df5467311e9a91c408d5c22fa41, 1552658152, 0xb525bf9c467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/wohnhaus-goernische-gasse.jpg', 'jpg', '9e9abd17d1a49053d11924edcebccf1e', '1', 'wohnhaus-goernische-gasse.jpg', 0, 0.139205662603, 1, 0.181281950452, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(801, 0x267f1df5467311e9a91c408d5c22fa41, 1552658155, 0xb81fbc97467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/wohnhaus-rosengasse-2.jpg', 'jpg', 'ef1a07b23859899a734e925d7a2c9700', '1', 'wohnhaus-rosengasse-2.jpg', 0, 0.246356696738, 1, 0.19465648855, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(802, 0x267f1df5467311e9a91c408d5c22fa41, 1644934347, 0xb92fb24e467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/e-werk-brauhausstrasse-1.jpg', 'jpg', '61cdb7bef90f13a7136a8a4b25dc905f', '1', 'e-werk-brauhausstrasse-1.jpg', 0.00732421875, 0.0791556728232, 0.99267578125, 0.529683377309, 0x613a313a7b733a323a226465223b613a353a7b733a353a227469746c65223b733a383a225265666572656e7a223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a32323a22452d5765726b20427261756861757373747261c39f65223b733a373a226c6963656e7365223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(804, 0x267f1df5467311e9a91c408d5c22fa41, 1644934343, 0xc09740c7467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/alte-ziegelei-1.jpg', 'jpg', 'a247b7b1e54abc0c5046f6d78607f185', '1', 'alte-ziegelei-1.jpg', 0.01025390625, 0.212609970674, 0.98974609375, 0.558651026393, 0x613a313a7b733a323a226465223b613a353a7b733a353a227469746c65223b733a383a225265666572656e7a223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a31333a22416c7465205a696567656c6569223b733a373a226c6963656e7365223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(805, 0x267f1df5467311e9a91c408d5c22fa41, 1552658147, 0xc416cb81467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/jahnhalle.jpg', 'jpg', '8f7955f5b457654b74a15e88654f8728', '1', 'jahnhalle.jpg', 0, 0.148093841642, 1, 0.646627565982, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(806, 0x267f1df5467311e9a91c408d5c22fa41, 1552658145, 0xc433b88f467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/alte-ziegelei-3.jpg', 'jpg', '40936257485cd57168f9fa455e933d5a', '1', 'alte-ziegelei-3.jpg', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(807, 0x267f1df5467311e9a91c408d5c22fa41, 1552658150, 0xc6eaaf6d467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/rittergut-coelln.jpg', 'jpg', 'f630378402f55ff1df4e8bed31098d01', '1', 'rittergut-coelln.jpg', 0, 0.283724340176, 1, 0.401759530792, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(809, 0x267f1df5467311e9a91c408d5c22fa41, 1553878145, 0xc942253a467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/hamburger-hof.jpg', 'jpg', '3f64cf746174ec835dc2d5670811ffaa', '1', 'hamburger-hof.jpg', 0.00341796875, 0.110520722635, 0.99658203125, 0.672688629118, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(810, 0x267f1df5467311e9a91c408d5c22fa41, 1553878163, 0xcbc4a14c467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/kaserne-bohnitzsch-1.jpg', 'jpg', '6ca91cbb5c7f27795f171a1d122290d4', '1', 'kaserne-bohnitzsch-1.jpg', 0.0078125, 0.183284457478, 0.9921875, 0.609970674487, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(811, 0x267f1df5467311e9a91c408d5c22fa41, 1553878174, 0xccb24364467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/kaserne-bohnitzsch-2.jpg', 'jpg', '8839c2910a3f63f8607f94705aa10c4b', '1', 'kaserne-bohnitzsch-2.jpg', 0, 0.127565982405, 1, 0.681085043988, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(812, 0x267f1df5467311e9a91c408d5c22fa41, 1553878204, 0xce7c80c2467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/landkrankenhaus.jpg', 'jpg', 'a3b13f1be8e11c70c86253fa827f299a', '1', 'landkrankenhaus.jpg', 0.0048828125, 0.280575539568, 0.9951171875, 0.531066056246, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(813, 0x267f1df5467311e9a91c408d5c22fa41, 1552658147, 0xd285349b467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/herrenhaus-dresdner-strasse.jpg', 'jpg', 'a0e798cdd651953ae3f129724fcb3d7d', '1', 'herrenhaus-dresdner-strasse.jpg', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(815, 0x86ee99abc64d11e88ff2408d5c22fa41, 1552657625, 0xc96d0cf7472811e9a91c408d5c22fa41, 'file', 'files/odd/img/ODD_Logo.png', 'png', '0dd572b40f1e9c2843715f9d1dcc677e', '1', 'ODD_Logo.png', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a33333a224f4444204c6f676f202d204578706c6f72696e6720436f6e74616f205468656d65223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(820, 0x5556381bc64d11e88ff2408d5c22fa41, 1553271254, 0x89152b404cbd11e9a91c408d5c22fa41, 'folder', 'files/odd/scss', '', 'af3cb9077c044201ad94991c70c728d1', '1', 'scss', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(821, 0x89152b404cbd11e9a91c408d5c22fa41, 1575380404, 0x89152b384cbd11e9a91c408d5c22fa41, 'file', 'files/odd/scss/_custom_colors.scss', 'scss', 'faa3e283a513251c3af4f09bf6d5d961', '1', '_custom_colors.scss', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(822, 0x89152b404cbd11e9a91c408d5c22fa41, 1553271254, 0x89152b324cbd11e9a91c408d5c22fa41, 'file', 'files/odd/scss/_custom_variables.scss', 'scss', '4791bf84f66d4b442eeaeac9bb8a8c72', '1', '_custom_variables.scss', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(823, 0x89152b404cbd11e9a91c408d5c22fa41, 1575380926, 0x89152b2b4cbd11e9a91c408d5c22fa41, 'file', 'files/odd/scss/custom.scss', 'scss', '9cbb457cbe5c21e7a8a0f3992523afdb', '1', 'custom.scss', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(854, 0x267f1df5467311e9a91c408d5c22fa41, 1555065120, 0x34b541155d0e11e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/IMG_3790_1_HDR_tonemapped.jpg', 'jpg', 'd98ebb0c9aad9dd1bc4be9bfdc739a66', '1', 'IMG_3790_1_HDR_tonemapped.jpg', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(855, 0x267f1df5467311e9a91c408d5c22fa41, 1555065120, 0x34b5410d5d0e11e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/PICT0004_03_8bit.jpg', 'jpg', '6c55203d749a9ba94106930d66f9044b', '1', 'PICT0004_03_8bit.jpg', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(856, 0x267f1df5467311e9a91c408d5c22fa41, 1555065120, 0x34b541065d0e11e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/e-werk-brauhausstrasse-2.jpg', 'jpg', 'e0d8a92393c972e5cd168d5a78dd67b7', '1', 'e-werk-brauhausstrasse-2.jpg', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(857, 0x86ee99abc64d11e88ff2408d5c22fa41, 1555316209, 0xd163d7285f5611e989ece0d55edd9ad9, 'file', 'files/odd/img/favicon.ico', 'ico', '75ab0f0a098e0a63c5a68c9cb577b9e1', '1', 'favicon.ico', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(858, NULL, 1638524413, 0x03978b0f541d11ec8ee0e0d55e59bff3, 'folder', 'files/social-feed', '', '4d2d253fd689642108b33d6deb15f113', '1', 'social-feed', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(859, 0x03978b0f541d11ec8ee0e0d55e59bff3, 1638524413, 0x03978b04541d11ec8ee0e0d55e59bff3, 'folder', 'files/social-feed/70570732', '', 'a6fbae4602a396d3aaa1b982987550d6', '1', '70570732', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(860, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524413, 0x03978afc541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6868857032481538048.jpg', 'jpg', '28d81d1e1217d5fc79781bb9becc742a', '1', '6868857032481538048.jpg', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(861, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524413, 0x03978af5541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6863780628970684416.jpg', 'jpg', '9a269aaa9d7811b160d070621ebb40d3', '1', '6863780628970684416.jpg', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(862, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524414, 0x03978aeb541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6859777035833786368.jpg', 'jpg', '0f88e5d0ea5396e6b111e134321e5033', '1', '6859777035833786368.jpg', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(863, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524414, 0x03978ae4541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6821723322980589568.jpg', 'jpg', '6cc89d2eb80b2e58a96c8a8919f6bc3b', '1', '6821723322980589568.jpg', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(864, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524414, 0x03978adc541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6814107593779269633.jpg', 'jpg', '8ed28675f33d2f3fa6ee96979e532dc5', '1', '6814107593779269633.jpg', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(865, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524415, 0x03978ad4541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6810600668026454016.jpg', 'jpg', '11df1eb0f5b8469080bbaa6a8e4a8841', '1', '6810600668026454016.jpg', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(866, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524415, 0x03978ac8541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6806161831481159680.jpg', 'jpg', 'b4fad794ccfcf56f75617f9614f7c243', '1', '6806161831481159680.jpg', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(867, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524420, 0x03978a95541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6802949577843453952.jpg', 'jpg', '76ea90aba86bbf728e9a407154bbbc11', '1', '6802949577843453952.jpg', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(868, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524420, 0x08043c64541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6800429967206359041.jpg', 'jpg', 'ffeafff60a8a39c0ae7f6ebe37e4baa0', '1', '6800429967206359041.jpg', 0, 0, 0, 0, NULL); - -INSERT INTO `tl_form` (`id`, `tstamp`, `title`, `alias`, `jumpTo`, `sendViaEmail`, `recipient`, `subject`, `format`, `skipEmpty`, `storeValues`, `targetTable`, `customTpl`, `method`, `novalidate`, `attributes`, `formID`, `allowTags`, `advancedCss`) VALUES(6, 1539346644, 'Odd / Beispielformular', 'mate-beispielformular', 135, '1', 'info@example.de', 'Formular-Anfrage mate.contao-themes.net', 'raw', '', '', '', 'form_wrapper', 'POST', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', ''); -INSERT INTO `tl_form` (`id`, `tstamp`, `title`, `alias`, `jumpTo`, `sendViaEmail`, `recipient`, `subject`, `format`, `skipEmpty`, `storeValues`, `targetTable`, `customTpl`, `method`, `novalidate`, `attributes`, `formID`, `allowTags`, `advancedCss`) VALUES(8, 1539346653, 'Odd / Kontaktformular', 'mate-kontaktformular', 135, '1', 'info@example.de', 'Anfrage Kontaktformular bei Mate Theme', 'raw', '', '', '', 'form_wrapper', 'POST', '', 'a:2:{i:0;s:0:\"\";i:1;s:4:\"test\";}', '', '', ''); - -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(22, 6, 128, 1511533531, 'text', 'Name', 'name', NULL, NULL, NULL, '1', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(23, 6, 64, 1511535789, 'text', 'Vorname', 'vorname', NULL, NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(27, 6, 640, 1511533525, 'text', 'E-Mail', 'email', NULL, NULL, NULL, '', 'email', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(28, 6, 768, 1511533391, 'text', 'Telefon', 'telefon', NULL, NULL, NULL, '', 'phone', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(29, 6, 896, 1511533449, 'textarea', 'Ihre Nachricht', 'nachricht', NULL, NULL, NULL, '1', '', '', 0, 0, 'a:2:{i:0;s:1:\"4\";i:1;s:2:\"40\";}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(30, 6, 1024, 1511533458, 'submit', '', '', NULL, NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', 'Absenden', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(31, 6, 876, 1511786014, 'checkbox', 'Checkbox-Menü', 'kontaktart', NULL, NULL, 0x613a333a7b693a303b613a323a7b733a353a2276616c7565223b733a383a226175737761686c31223b733a353a226c6162656c223b733a393a224175737761686c2031223b7d693a313b613a323a7b733a353a2276616c7565223b733a383a226175737761686c32223b733a353a226c6162656c223b733a393a224175737761686c2032223b7d693a323b613a323a7b733a353a2276616c7565223b733a383a226175737761686c33223b733a353a226c6162656c223b733a393a224175737761686c2033223b7d7d, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(32, 6, 864, 1511534002, 'select', 'Wie sind Sie auf uns aufmerksam geworden?', 'wie-gefunden', NULL, NULL, 0x613a363a7b693a303b613a323a7b733a353a2276616c7565223b733a383a22696e7465726e6574223b733a353a226c6162656c223b733a383a22496e7465726e6574223b7d693a313b613a323a7b733a353a2276616c7565223b733a373a227a656974756e67223b733a353a226c6162656c223b733a373a225a656974756e67223b7d693a323b613a323a7b733a353a2276616c7565223b733a31313a22706572736f656e6c696368223b733a353a226c6162656c223b733a32333a2250657273c3b66e6c6963686520456d706665686c756e67223b7d693a333b613a323a7b733a353a2276616c7565223b733a353a22726164696f223b733a353a226c6162656c223b733a353a22526164696f223b7d693a343b613a323a7b733a353a2276616c7565223b733a323a227476223b733a353a226c6162656c223b733a323a225456223b7d693a353b613a323a7b733a353a2276616c7565223b733a393a22736f6e737469676573223b733a353a226c6162656c223b733a393a22536f6e737469676573223b7d7d, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(33, 6, 888, 1511536334, 'radio', 'Radio-Button-Menü', 'radio-button', NULL, NULL, 0x613a343a7b693a303b613a323a7b733a353a2276616c7565223b733a353a227765727431223b733a353a226c6162656c223b733a363a22576572742031223b7d693a313b613a323a7b733a353a2276616c7565223b733a353a227765727432223b733a353a226c6162656c223b733a363a22576572742032223b7d693a323b613a323a7b733a353a2276616c7565223b733a353a227765727433223b733a353a226c6162656c223b733a363a22576572742033223b7d693a333b613a323a7b733a353a2276616c7565223b733a353a227765727434223b733a353a226c6162656c223b733a363a22576572742034223b7d7d, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(34, 6, 892, 1645102642, 'upload', 'Dateiupload', 'dateiupload', NULL, NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '1', NULL, '', '1', '', '', '', 0, 0, 'form_upload_odd', '', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(47, 6, 816, 1511781024, 'text', 'Datumsauswahl', 'datepicker', NULL, NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', 'datepicker', '', '', 0, 0, '', '', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(48, 6, 840, 1511781167, 'text', 'Zeitauswahl', 'timepicker', NULL, NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', 'timepicker', '', '', 0, 0, '', '', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(50, 8, 128, 1555069694, 'text', 'Name', 'name', NULL, NULL, NULL, '1', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(52, 8, 384, 1512724283, 'text', 'E-Mail', 'email', NULL, NULL, NULL, '1', 'email', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(53, 8, 512, 1512724310, 'textarea', 'Ihre Nachricht', 'nachricht', NULL, NULL, NULL, '1', '', '', 0, 0, 'a:2:{i:0;s:1:\"4\";i:1;s:2:\"40\";}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(54, 8, 640, 1512724321, 'submit', '', '', NULL, NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', '', NULL, '', '', '', '', '', 0, 0, '', 'Absenden', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(57, 6, 960, 1525257445, 'rocksolid_antispam', 'Antispam Sicherheitsfrage', '', NULL, NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(58, 8, 576, 1555069708, 'captcha', '', '', NULL, NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(60, 8, 768, 1555069889, 'explanation', '', '', '

[nbsp]

\n

* Pflichtfelder

', NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', ''); - -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(16, 17, 1555080617, 'Headerbild', '', '', '', 1920, 400, 'crop', 0, '1', '', ''); -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(17, 17, 1560847552, 'Headerbild mit Schräge', '', '1x, 1.5x, 2x', '', 1920, 650, 'crop', 0, '1', '', ''); -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(18, 17, 1552657088, 'Slider', '', '', '', 1920, 750, 'crop', 0, '1', '', ''); -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(19, 17, 1525783920, 'Teaserboxen', '', '1x, 1.5x, 2x', '', 350, 200, 'crop', 0, '1', '', ''); -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(22, 17, 1528372682, 'Team', '', '1x, 1.5x, 2x', '', 350, 250, 'crop', 100, '1', '', ''); -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(23, 17, 1539099645, 'News / Listenansicht', '', '', '', 540, 350, 'crop', 100, '1', '', ''); -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(24, 17, 1560847649, 'Slider mit Schräge', '', '', '', 1920, 900, 'crop', 0, '1', '', ''); -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(25, 17, 1552657717, 'Logo', '', '1x, 1.5x, 2x', '', NULL, 90, 'box', NULL, '1', '', ''); -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(26, 17, 1572884258, 'Maklermodul / Listenansicht', '', '', '', 357, 200, 'crop', 0, '', '', ''); - -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(6, 16, 128, 1555080029, '(max-width: 991px)', '1x, 1.5x, 2x', '', 991, 350, 'crop', NULL, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(7, 17, 128, 1555080183, '(max-width: 767px)', '1x, 1.5x, 2x', '', 767, 450, 'crop', NULL, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(8, 18, 128, 1525699627, '(max-width:767px)', '1x, 1.5x, 2x', '', 767, 500, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(9, 18, 256, 1525787411, '(max-width:1024px)', '1x, 1.5x, 2x', '', 1024, 500, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(10, 18, 384, 1525856669, '(max-width:1300px)', '1x, 1.5x, 2x', '', 1300, 550, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(13, 22, 128, 1528372677, '(max-width:1199px)', '1x, 1.5x, 2x', '', 300, 200, 'crop', 100, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(14, 22, 64, 1528372754, '(max-width:991px)', '1x, 1.5x, 2x', '', 420, 300, 'crop', 100, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(15, 22, 32, 1528372807, '(max-width:767px)', '1x, 1.5x, 2x', '', 510, 350, 'crop', 100, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(16, 22, 16, 1528372855, '(max-width:400px)', '1x, 1.5x, 2x', '', 370, 255, 'crop', 100, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(20, 24, 128, 1552659511, '(max-width: 1450px)', '1x, 1.5x, 2x', '', 1455, 800, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(21, 24, 64, 1552659506, '(max-width: 1150px)', '1x, 1.5x, 2x', '', 1150, 800, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(22, 24, 32, 1552659500, '(max-width:992px)', '1x, 1.5x, 2x', '', 992, 800, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(23, 24, 16, 1552660075, '(max-width: 767px)', '1x, 1.5x, 2x', '', 767, 500, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(25, 19, 128, 1552663259, '(max-width: 767px)', '1x, 1.5x, 2x', '', 510, 300, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(27, 17, 256, 1555079599, '(max-width: 991px)', '1x, 1.5x, 2x', '', 991, 500, 'crop', NULL, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(28, 17, 64, 1555079881, '(max-width: 450px)', '1x, 1.5x, 2x', '', 450, 400, 'crop', NULL, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(29, 16, 64, 1555080549, '(max-width: 450px)', '1x, 1.5x, 2x', '', 450, 250, 'crop', NULL, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(30, 16, 256, 1555080674, '(max-width: 1200px)', '1x, 1.5x, 2x', '', 1200, 350, 'crop', NULL, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(31, 24, 8, 1560847732, '(max-width: 450px)', '1x, 1.5x, 2x', '', 450, 295, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(32, 18, 64, 1560847802, '(max-width: 450px)', '1x, 1.5x, 2x', '', 450, 295, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(33, 19, 64, 1560847852, '(max-width: 450px)', '1x, 1.5x, 2x', '', 380, 225, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(34, 26, 128, 1572884653, '(max-width:991px)', '', '', 417, 233, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(35, 26, 64, 1572884651, '(max-width:767px)', '', '', 511, 286, 'crop', 0, ''); - -INSERT INTO `tl_layout` (`id`, `pid`, `tstamp`, `name`, `rows`, `headerHeight`, `footerHeight`, `cols`, `widthLeft`, `widthRight`, `sections`, `framework`, `stylesheet`, `external`, `loadingOrder`, `combineScripts`, `modules`, `template`, `viewport`, `titleTag`, `cssClass`, `onload`, `head`, `addJQuery`, `jquery`, `addMooTools`, `mootools`, `analytics`, `scripts`, `script`, `static`, `width`, `align`, `externalJs`, `minifyMarkup`, `defaultImageDensities`, `lightboxSize`, `calendarfeeds`, `newsfeeds`, `orderExtJs`, `mooSource`, `jSource`, `webfonts`, `orderExt`) VALUES(55, 17, 1643298800, 'Einspaltiges Layout / Schräger Header', '3rw', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '1cl', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '', 0x613a313a7b693a303b613a343a7b733a353a227469746c65223b733a303a22223b733a323a226964223b733a303a22223b733a383a2274656d706c617465223b733a31333a22626c6f636b5f73656374696f6e223b733a383a22706f736974696f6e223b733a333a22746f70223b7d7d, '', NULL, NULL, 'external_first', '1', 0x613a363a7b693a303b613a333a7b733a333a226d6f64223b733a333a22333832223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a313b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a323b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a343a226d61696e223b733a363a22656e61626c65223b733a313a2231223b7d693a333b613a333a7b733a333a226d6f64223b733a333a22333932223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a343b613a333a7b733a333a226d6f64223b733a333a22333732223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a353b613a333a7b733a333a226d6f64223b733a333a22333731223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d7d, 'fe_page_odd', 'width=device-width, initial-scale=1, shrink-to-fit=no', '', '', '', NULL, '1', 'a:2:{i:0;s:11:\"j_accordion\";i:1;s:10:\"j_colorbox\";}', '', NULL, NULL, 'a:1:{i:0;s:9:\"js_slider\";}', NULL, '', '', 'center', NULL, '1', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', NULL, NULL, NULL, 'moo_local', '', '', NULL); -INSERT INTO `tl_layout` (`id`, `pid`, `tstamp`, `name`, `rows`, `headerHeight`, `footerHeight`, `cols`, `widthLeft`, `widthRight`, `sections`, `framework`, `stylesheet`, `external`, `loadingOrder`, `combineScripts`, `modules`, `template`, `viewport`, `titleTag`, `cssClass`, `onload`, `head`, `addJQuery`, `jquery`, `addMooTools`, `mootools`, `analytics`, `scripts`, `script`, `static`, `width`, `align`, `externalJs`, `minifyMarkup`, `defaultImageDensities`, `lightboxSize`, `calendarfeeds`, `newsfeeds`, `orderExtJs`, `mooSource`, `jSource`, `webfonts`, `orderExt`) VALUES(56, 17, 1644832868, 'Zweispaltiges Layout / Linke Spalte / Schräger Header', '3rw', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '2cll', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '', 0x613a313a7b693a303b613a343a7b733a353a227469746c65223b733a303a22223b733a323a226964223b733a303a22223b733a383a2274656d706c617465223b733a31333a22626c6f636b5f73656374696f6e223b733a383a22706f736974696f6e223b733a333a22746f70223b7d7d, '', NULL, NULL, 'external_first', '1', 0x613a383a7b693a303b613a333a7b733a333a226d6f64223b733a333a22333832223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a313b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a323b613a333a7b733a333a226d6f64223b733a333a22333834223b733a333a22636f6c223b733a343a226c656674223b733a363a22656e61626c65223b733a313a2231223b7d693a333b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a343a226c656674223b733a363a22656e61626c65223b733a313a2231223b7d693a343b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a343a226d61696e223b733a363a22656e61626c65223b733a313a2231223b7d693a353b613a333a7b733a333a226d6f64223b733a333a22333932223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a363b613a333a7b733a333a226d6f64223b733a333a22333732223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a373b613a333a7b733a333a226d6f64223b733a333a22333731223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d7d, 'fe_page_odd_left', 'width=device-width, initial-scale=1, shrink-to-fit=no', '', 'left-col-layout', '', NULL, '1', 'a:2:{i:0;s:11:\"j_accordion\";i:1;s:10:\"j_colorbox\";}', '', NULL, NULL, 'a:1:{i:0;s:9:\"js_slider\";}', NULL, '', '', 'center', NULL, '1', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', NULL, NULL, NULL, 'moo_local', '', '', NULL); -INSERT INTO `tl_layout` (`id`, `pid`, `tstamp`, `name`, `rows`, `headerHeight`, `footerHeight`, `cols`, `widthLeft`, `widthRight`, `sections`, `framework`, `stylesheet`, `external`, `loadingOrder`, `combineScripts`, `modules`, `template`, `viewport`, `titleTag`, `cssClass`, `onload`, `head`, `addJQuery`, `jquery`, `addMooTools`, `mootools`, `analytics`, `scripts`, `script`, `static`, `width`, `align`, `externalJs`, `minifyMarkup`, `defaultImageDensities`, `lightboxSize`, `calendarfeeds`, `newsfeeds`, `orderExtJs`, `mooSource`, `jSource`, `webfonts`, `orderExt`) VALUES(57, 17, 1644833953, 'Zweispaltiges Layout / Rechte Spalte / Schräger Header', '3rw', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '2clr', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 0x613a313a7b693a303b613a343a7b733a353a227469746c65223b733a303a22223b733a323a226964223b733a303a22223b733a383a2274656d706c617465223b733a31333a22626c6f636b5f73656374696f6e223b733a383a22706f736974696f6e223b733a333a22746f70223b7d7d, '', NULL, NULL, 'external_first', '1', 0x613a383a7b693a303b613a333a7b733a333a226d6f64223b733a333a22333832223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a313b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a323b613a333a7b733a333a226d6f64223b733a333a22333834223b733a333a22636f6c223b733a353a227269676874223b733a363a22656e61626c65223b733a313a2231223b7d693a333b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a353a227269676874223b733a363a22656e61626c65223b733a313a2231223b7d693a343b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a343a226d61696e223b733a363a22656e61626c65223b733a313a2231223b7d693a353b613a333a7b733a333a226d6f64223b733a333a22333932223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a363b613a333a7b733a333a226d6f64223b733a333a22333732223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a373b613a333a7b733a333a226d6f64223b733a333a22333731223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d7d, 'fe_page_odd_right', 'width=device-width, initial-scale=1, shrink-to-fit=no', '', 'left-col-layout', '', NULL, '1', 'a:2:{i:0;s:11:\"j_accordion\";i:1;s:10:\"j_colorbox\";}', '', NULL, NULL, 'a:1:{i:0;s:9:\"js_slider\";}', NULL, '', '', 'center', NULL, '1', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', NULL, NULL, NULL, 'moo_local', '', '', NULL); -INSERT INTO `tl_layout` (`id`, `pid`, `tstamp`, `name`, `rows`, `headerHeight`, `footerHeight`, `cols`, `widthLeft`, `widthRight`, `sections`, `framework`, `stylesheet`, `external`, `loadingOrder`, `combineScripts`, `modules`, `template`, `viewport`, `titleTag`, `cssClass`, `onload`, `head`, `addJQuery`, `jquery`, `addMooTools`, `mootools`, `analytics`, `scripts`, `script`, `static`, `width`, `align`, `externalJs`, `minifyMarkup`, `defaultImageDensities`, `lightboxSize`, `calendarfeeds`, `newsfeeds`, `orderExtJs`, `mooSource`, `jSource`, `webfonts`, `orderExt`) VALUES(58, 17, 1644834189, 'Dreispaltiges Layout / Linke und rechte Spalte / Schräger Header', '3rw', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '3cl', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 0x613a313a7b693a303b613a343a7b733a353a227469746c65223b733a303a22223b733a323a226964223b733a303a22223b733a383a2274656d706c617465223b733a31333a22626c6f636b5f73656374696f6e223b733a383a22706f736974696f6e223b733a333a22746f70223b7d7d, '', NULL, NULL, 'external_first', '1', 0x613a393a7b693a303b613a333a7b733a333a226d6f64223b733a333a22333832223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a313b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a323b613a333a7b733a333a226d6f64223b733a333a22333834223b733a333a22636f6c223b733a343a226c656674223b733a363a22656e61626c65223b733a313a2231223b7d693a333b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a343a226c656674223b733a363a22656e61626c65223b733a313a2231223b7d693a343b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a353a227269676874223b733a363a22656e61626c65223b733a313a2231223b7d693a353b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a343a226d61696e223b733a363a22656e61626c65223b733a313a2231223b7d693a363b613a333a7b733a333a226d6f64223b733a333a22333932223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a373b613a333a7b733a333a226d6f64223b733a333a22333732223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a383b613a333a7b733a333a226d6f64223b733a333a22333731223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d7d, 'fe_page_odd_three_columns', 'width=device-width, initial-scale=1, shrink-to-fit=no', '', 'left-right-col-layout', '', NULL, '1', 'a:2:{i:0;s:11:\"j_accordion\";i:1;s:10:\"j_colorbox\";}', '', NULL, NULL, 'a:1:{i:0;s:9:\"js_slider\";}', NULL, '', '', 'center', NULL, '1', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', NULL, NULL, NULL, 'moo_local', '', '', NULL); -INSERT INTO `tl_layout` (`id`, `pid`, `tstamp`, `name`, `rows`, `headerHeight`, `footerHeight`, `cols`, `widthLeft`, `widthRight`, `sections`, `framework`, `stylesheet`, `external`, `loadingOrder`, `combineScripts`, `modules`, `template`, `viewport`, `titleTag`, `cssClass`, `onload`, `head`, `addJQuery`, `jquery`, `addMooTools`, `mootools`, `analytics`, `scripts`, `script`, `static`, `width`, `align`, `externalJs`, `minifyMarkup`, `defaultImageDensities`, `lightboxSize`, `calendarfeeds`, `newsfeeds`, `orderExtJs`, `mooSource`, `jSource`, `webfonts`, `orderExt`) VALUES(59, 17, 1643298853, 'Einspaltiges Layout / Gerader Header', '3rw', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '1cl', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '', 0x613a313a7b693a303b613a343a7b733a353a227469746c65223b733a303a22223b733a323a226964223b733a303a22223b733a383a2274656d706c617465223b733a31333a22626c6f636b5f73656374696f6e223b733a383a22706f736974696f6e223b733a333a22746f70223b7d7d, '', NULL, NULL, 'external_first', '1', 0x613a363a7b693a303b613a333a7b733a333a226d6f64223b733a333a22343137223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a313b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a323b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a343a226d61696e223b733a363a22656e61626c65223b733a313a2231223b7d693a333b613a333a7b733a333a226d6f64223b733a333a22333932223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a343b613a333a7b733a333a226d6f64223b733a333a22333732223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a353b613a333a7b733a333a226d6f64223b733a333a22333731223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d7d, 'fe_page_odd', 'width=device-width, initial-scale=1, shrink-to-fit=no', '', '', '', NULL, '1', 'a:2:{i:0;s:11:\"j_accordion\";i:1;s:10:\"j_colorbox\";}', '', NULL, NULL, 'a:1:{i:0;s:9:\"js_slider\";}', NULL, '', '', 'center', NULL, '1', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', NULL, NULL, NULL, 'moo_local', '', '', NULL); - -INSERT INTO `tl_member` (`id`, `tstamp`, `firstname`, `lastname`, `dateOfBirth`, `gender`, `company`, `street`, `postal`, `city`, `state`, `country`, `phone`, `mobile`, `fax`, `email`, `website`, `language`, `groups`, `login`, `username`, `password`, `assignDir`, `homeDir`, `disable`, `start`, `stop`, `dateAdded`, `lastLogin`, `currentLogin`, `locked`, `session`, `useTwoFactor`, `secret`, `trustedTokenVersion`, `backupCodes`, `loginAttempts`, `newsletter`) VALUES(1, 1259754224, 'John', 'Smith', '238201200', 'male', '', '', '', '', '', '', '', '', '', 'j.smith@example.com', '', 'en', 0x613a313a7b693a303b733a313a2232223b7d, '1', 'j.smith', '$2y$10$r//Ke.SkjhB5W8PLFKMmweY5Bv2d4CbSm3f3sH8Q4UMp8QknQPe0y', '', 0x00000000000000000000000000000000, '', '', '', 1259754224, 1539337506, 1539337760, 0, 0x613a363a7b733a373a2272656665726572223b613a323a7b733a343a226c617374223b733a31373a226d656d626572732d617265612e68746d6c223b733a373a2263757272656e74223b733a393a22757365722e68746d6c223b7d733a31303a22636170746368615f3230223b613a333a7b733a333a2273756d223b693a383b733a333a226b6579223b733a33333a22636562373937343262653137306630303832363537373732373734376261306437223b733a343a2274696d65223b693a313439373134373934303b7d733a31353a22636170746368615f63617074636861223b613a333a7b733a333a2273756d223b693a31313b733a333a226b6579223b733a33333a22633431623637396665326338366161333063316130316230613034336234366237223b733a343a2274696d65223b693a313439373134373934303b7d733a32313a22636170746368615f6c6f73745f70617373776f7264223b613a333a7b733a333a2273756d223b693a363b733a333a226b6579223b733a33333a22636239353765633334376531353338336466313963636562623232346465386133223b733a343a2274696d65223b693a313531313533303338333b7d733a32313a22726f636b736f6c69645f616e74697370616d5f3335223b613a333a7b733a353a226e616d6573223b613a333a7b693a303b733a373a22656d61696c2d32223b693a313b733a333a2275726c223b693a323b733a32323a225f4b704b4b622d4c456d49616f463971443064387851223b7d733a363a2276616c756573223b613a333a7b693a303b733a303a22223b693a313b733a303a22223b693a323b733a32323a2251336a376a50586f6b6b5434466e30686a455a796651223b7d733a343a2274696d65223b693a313532343930393935363b7d733a32313a22726f636b736f6c69645f616e74697370616d5f3535223b613a333a7b733a353a226e616d6573223b613a333a7b693a303b733a373a22656d61696c2d32223b693a313b733a333a2275726c223b693a323b733a32323a22525a584d38423675684b6f436575556d314c45437167223b7d733a363a2276616c756573223b613a333a7b693a303b733a303a22223b693a313b733a303a22223b693a323b733a32323a222d65696d7a627975674d4d487647366635454f4f6d51223b7d733a343a2274696d65223b693a313532343931303738353b7d7d, '', NULL, 0, NULL, 0, ''); -INSERT INTO `tl_member` (`id`, `tstamp`, `firstname`, `lastname`, `dateOfBirth`, `gender`, `company`, `street`, `postal`, `city`, `state`, `country`, `phone`, `mobile`, `fax`, `email`, `website`, `language`, `groups`, `login`, `username`, `password`, `assignDir`, `homeDir`, `disable`, `start`, `stop`, `dateAdded`, `lastLogin`, `currentLogin`, `locked`, `session`, `useTwoFactor`, `secret`, `trustedTokenVersion`, `backupCodes`, `loginAttempts`, `newsletter`) VALUES(2, 1259754224, 'Donna', 'Evans', '191635200', 'female', '', '', '', '', '', '', '', '', '', 'd.evans@example.com', '', 'en', 0x613a313a7b693a303b733a313a2231223b7d, '1', 'd.evans', '$2y$10$3.ghpkaeW/ATUeSrhA8sgedbs4AdboKczBPV7IqyweXS6eCQ749pS', '', 0x00000000000000000000000000000000, '', '', '', 1259754224, 1516703824, 1553272691, 0, 0x613a333a7b733a373a2272656665726572223b613a323a7b733a343a226c617374223b733a33343a226d792d6163636f756e742e68746d6c3f7468656d653d63746f2d626f6f7374726170223b733a373a2263757272656e74223b733a33303a226c6f676f75742e68746d6c3f7468656d653d63746f2d626f6f7374726170223b7d733a31303a22636170746368615f3230223b613a333a7b733a333a2273756d223b693a31313b733a333a226b6579223b733a33333a22633036623236313465326335613031643137636532333039656434383562336533223b733a343a2274696d65223b693a313339303134323031313b7d733a32313a22636170746368615f6c6f73745f70617373776f7264223b613a333a7b733a333a2273756d223b693a363b733a333a226b6579223b733a33333a22633634346635353637323565353066653262636138316537653035613731373139223b733a343a2274696d65223b693a313430313236303637373b7d7d, '', NULL, 0, NULL, 0, ''); -INSERT INTO `tl_member` (`id`, `tstamp`, `firstname`, `lastname`, `dateOfBirth`, `gender`, `company`, `street`, `postal`, `city`, `state`, `country`, `phone`, `mobile`, `fax`, `email`, `website`, `language`, `groups`, `login`, `username`, `password`, `assignDir`, `homeDir`, `disable`, `start`, `stop`, `dateAdded`, `lastLogin`, `currentLogin`, `locked`, `session`, `useTwoFactor`, `secret`, `trustedTokenVersion`, `backupCodes`, `loginAttempts`, `newsletter`) VALUES(3, 1259754224, 'John', 'Doe', '0', '', '', '', '', '', '', '', '', '', '', 'j.doe@example.com', '', 'en', 0x613a323a7b693a303b733a313a2232223b693a313b733a313a2231223b7d, '1', 'j.doe', '7a86a8cf9d7510cc4661b217133f2eed37981b75', '', 0x00000000000000000000000000000000, '', '', '', 1259754224, 0, 0, 0, 0x613a313a7b733a373a2272656665726572223b613a323a7b733a343a226c617374223b733a31353a222f686973746f72792d312e68746d6c223b733a373a2263757272656e74223b733a313a222f223b7d7d, '', NULL, 0, NULL, 0, ''); - -INSERT INTO `tl_member_group` (`id`, `tstamp`, `name`, `redirect`, `jumpTo`, `disable`, `start`, `stop`) VALUES(1, 1172600419, 'Violin Students', '1', 6, '', '', ''); -INSERT INTO `tl_member_group` (`id`, `tstamp`, `name`, `redirect`, `jumpTo`, `disable`, `start`, `stop`) VALUES(2, 1172600394, 'Piano Students', '1', 7, '', '', ''); -INSERT INTO `tl_member_group` (`id`, `tstamp`, `name`, `redirect`, `jumpTo`, `disable`, `start`, `stop`) VALUES(3, 1367401146, 'general Members', '1', 67, '', '', ''); - -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(371, 17, 1523542648, 'Footer / Copyright', 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', 'html', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:0:{}', '', '', NULL, NULL, '
\n
\n {{theme::content::ODD02/05}}\n
\n
', 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', '', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(372, 17, 1637747701, 'Footer / Main', 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', 'html', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:0:{}', '', '', NULL, NULL, '\n', 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', '', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(373, 17, 1538491237, 'Footer / Navigation', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'customnav', 0, 0, '', '', '', 0, 'nav_default', '', 0x613a353a7b693a303b693a39323b693a313b693a3131383b693a323b693a3130313b693a333b693a3133343b693a343b693a3133393b7d, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:0:{}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(375, 17, 1528378451, 'Kontaktformular', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:12:\"Ihre Anfrage\";}', 'form', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 6, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:0:{}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(382, 17, 1644931859, 'Navigationsleiste mit Schräge', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'navigation', 0, 0, '', '', '', 0, 'nav_default_odd', 'mod_navigation_odd_sloping', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:0:{}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(383, 17, 1538393056, 'Sitemap', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'sitemap', 0, 0, '', '', '', 0, 'nav_makler_sitemap', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:0:{}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(384, 17, 1538494168, 'Unternavigation', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'navigation', 1, 3, '', '', '', 0, 'nav_default', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:0:{}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"subnav\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(386, 17, 1539185439, 'Module / News / Detailansicht', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', 'newsreader', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_full_odd', 'a:1:{i:0;s:4:\"date\";}', 0, '', 'all_items', 0x613a313a7b693a303b733a313a2232223b7d, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(387, 17, 1538492838, 'Module / News / Einfache Liste', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'newslist', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 4, 'simple', '', 'main', 0, '', NULL, '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 0, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_simple', 'a:1:{i:0;s:4:\"date\";}', 0, '', 'all_items', 0x613a313a7b693a303b733a313a2232223b7d, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(388, 17, 1552645431, 'Module / News / Liste mit Bildern', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'newslist', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 4, 'simple', '', 'main', 0, '', NULL, '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"23\";}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 0, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest_odd', 'a:1:{i:0;s:4:\"date\";}', 0, '', 'all_items', 0x613a313a7b693a303b733a313a2232223b7d, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(389, 17, 1539183296, 'Module / News / Liste ohne Bilder', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'newslist', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 4, 'simple', '', 'main', 0, '', NULL, '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 0, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_short_odd', 'a:1:{i:0;s:4:\"date\";}', 0, '', 'all_items', 0x613a313a7b693a303b733a313a2232223b7d, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(391, 17, 1539099775, 'Module / News / Startseite', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'newslist', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"23\";}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 2, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest_odd', 'a:1:{i:0;s:4:\"date\";}', 0, '', 'all_items', 0x613a313a7b693a303b733a313a2232223b7d, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(392, 17, 1637747928, 'Newsletter / Abonnieren / Startseite', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:36:\"Jetzt unseren Newsletter abonnieren!\";}', 'subscribe', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 148, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '1', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"nl-footer skw-tl\";}', 'nl_default_footer_odd', NULL, 'Sie haben folgende Verteiler auf ##domain## abonniert:\n\n##channels##\n\nBitte klicken Sie http://##domain##/newsletter-aktivierung.html?token=##token## um Ihr Abonnement zu aktivieren. Falls Sie die Bestellung nicht selbst getätigt haben, bitte ignorieren Sie diese E-Mail.\n\nDie Einwilligung kann jederzeit auf http://##domain##/newsletter-kuendigung.html widerrufen werden.', '1', 0x613a313a7b693a303b733a313a2234223b7d, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(393, 17, 1638439567, 'Module / News / Detailansicht / Kopfbild', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', 'newsreader', 0, 0, '', '', '', 0, '', 'mod_newsreader_odd_header', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_full_header_odd', '', 0, '', 'all_items', 0x613a313a7b693a303b733a313a2232223b7d, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(394, 17, 1539331627, 'Module / Events / Detailansicht', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', 'eventreader', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full_odd', 0, 0, 'ascending', '', 'cal_month', 1, '', '', 0x613a313a7b693a303b733a313a2234223b7d, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(395, 17, 1552650236, 'Module / Events / Eventliste mit Bildern', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:0:\"\";}', 'eventlist', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 4, 'simple', '', 'main', 0, '', NULL, '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"23\";}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_teaser_odd', 0, 394, 'ascending', '', 'next_two', 1, '', '1', 0x613a313a7b693a303b733a313a2234223b7d, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(396, 17, 1539330004, 'Module / Events / Eventliste ohne Bilder', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'eventlist', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 4, 'simple', '', 'main', 0, '', NULL, '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_list_odd', 0, 394, 'ascending', '', 'next_two', 1, '', '1', 0x613a313a7b693a303b733a313a2234223b7d, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(397, 17, 1539330812, 'Module / Events / Eventliste Upcoming', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'eventlist', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 4, 'simple', '', 'main', 0, '', NULL, '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_upcoming', 0, 394, 'ascending', '', 'next_next_year', 1, '', '1', 0x613a313a7b693a303b733a313a2234223b7d, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(398, 17, 1644935762, 'Module / Events / Kalender', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:8:\"Kalender\";}', 'calendar', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 110, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default_odd', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', 0x613a313a7b693a303b733a313a2234223b7d, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(399, 17, 1539186001, 'Module / Events / Mini-Kalender', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Mini-Kalender\";}', 'calendar', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 109, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_mini', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', 0x613a313a7b693a303b733a313a2234223b7d, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(400, 17, 1539331273, 'Module / Events / Detailansicht / Kopfbild', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', 'eventreader', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full_header_odd', 0, 0, 'ascending', '', 'cal_month', 1, '', '', 0x613a313a7b693a303b733a313a2234223b7d, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(401, 17, 1539334988, 'Module / User / Automatischer Logout', '', 'logout', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(402, 17, 1539334988, 'Module / User / Konto schließen', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:16:\"Konto schließen\";}', 'closeAccount', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', 'close_deactivate', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(403, 17, 1539335128, 'Module / User / Login-Formular', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:14:\"Login-Formular\";}', 'login', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 130, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(404, 17, 1539334988, 'Module / User / Passwort ändern', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:16:\"Passwort ändern\";}', 'changePassword', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(405, 17, 1539334988, 'Module / User / Passwort vergessen', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:18:\"Passwort vergessen\";}', 'lostPassword', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, 'Sie haben ein neues Passwort für ##domain## angefordert.\n\nBitte klicken Sie ##link## um das neue Passwort festzulegen. Wenn Sie diese E-Mail nicht angefordert haben, kontaktieren Sie bitte den Administrator der Webseite.', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(406, 17, 1644936081, 'Module / User / Personendaten', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Personendaten\";}', 'personalData', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', 0x613a32303a7b693a303b733a393a2266697273746e616d65223b693a313b733a383a226c6173746e616d65223b693a323b733a31313a22646174654f664269727468223b693a333b733a363a2267656e646572223b693a343b733a373a22636f6d70616e79223b693a353b733a363a22737472656574223b693a363b733a363a22706f7374616c223b693a373b733a343a2263697479223b693a383b733a353a227374617465223b693a393b733a373a22636f756e747279223b693a31303b733a353a2270686f6e65223b693a31313b733a363a226d6f62696c65223b693a31323b733a333a22666178223b693a31333b733a353a22656d61696c223b693a31343b733a373a2277656273697465223b693a31353b733a383a226c616e6775616765223b693a31363b733a363a2267726f757073223b693a31373b733a383a22757365726e616d65223b693a31383b733a383a2270617373776f7264223b693a31393b733a31303a226e6577736c6574746572223b7d, 'member_grouped', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(407, 17, 1644936092, 'Module / User / Registrierung', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Registrierung\";}', 'registration', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', 0x613a32303a7b693a303b733a393a2266697273746e616d65223b693a313b733a383a226c6173746e616d65223b693a323b733a31313a22646174654f664269727468223b693a333b733a363a2267656e646572223b693a343b733a373a22636f6d70616e79223b693a353b733a363a22737472656574223b693a363b733a363a22706f7374616c223b693a373b733a343a2263697479223b693a383b733a353a227374617465223b693a393b733a373a22636f756e747279223b693a31303b733a353a2270686f6e65223b693a31313b733a363a226d6f62696c65223b693a31323b733a333a22666178223b693a31333b733a353a22656d61696c223b693a31343b733a373a2277656273697465223b693a31353b733a383a226c616e6775616765223b693a31363b733a363a2267726f757073223b693a31373b733a383a22757365726e616d65223b693a31383b733a383a2270617373776f7264223b693a31393b733a31303a226e6577736c6574746572223b7d, 'member_grouped', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '1', '', '', '', NULL, '1', 0, 'Vielen Dank für Ihre Registrierung auf ##domain##.\n\nBitte klicken Sie ##link## um Ihre Registrierung abzuschließen und Ihr Konto zu aktivieren. Wenn Sie keinen Zugang angefordert haben, ignorieren Sie bitte diese E-Mail.', NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(408, 17, 1539344139, 'Module / Newsletter / Abonnieren', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:21:\"Newsletter abonnieren\";}', 'subscribe', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 148, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_default_odd', NULL, 'Sie haben folgende Verteiler auf ##domain## abonniert:\n\n##channels##\n\nBitte klicken Sie http://##domain##/newsletter-aktivierung.html?token=##token## um Ihr Abonnement zu aktivieren. Falls Sie die Bestellung nicht selbst getätigt haben, bitte ignorieren Sie diese E-Mail.\n\nDie Einwilligung kann jederzeit auf http://##domain##/newsletter-kuendigung.html widerrufen werden.', '', 0x613a313a7b693a303b733a313a2234223b7d, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(409, 17, 1539339179, 'Module / Newsletter / Kündigen', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Newsletter kündigen\";}', 'unsubscribe', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_default_odd', 'Sie haben folgende Abonnements auf ##domain## gekündigt:\n\n##channels##', NULL, '', 0x613a313a7b693a303b733a313a2234223b7d, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(412, 17, 1539344450, 'Module / FAQ / FAQ-Leser', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', 'faqreader', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, 0x613a313a7b693a303b733a313a2235223b7d, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(413, 17, 1539344463, 'Module / FAQ / FAQ-Liste', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'faqlist', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, 0x613a313a7b693a303b733a313a2235223b7d, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(414, 17, 1539345484, 'Module / FAQ / FAQ-Seite', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'faqpage', 0, 0, '', '', '', 0, '', 'mod_faqpage_odd', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, 0x613a313a7b693a303b733a313a2235223b7d, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(415, 17, 1539347848, 'Module / Suchmaschine', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', 'search', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', 'a:2:{i:0;s:2:\"48\";i:1;s:4:\"1000\";}', 0, 0, 'advanced', 'search_default', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(417, 17, 1644831836, 'Navigationsleiste ohne Schräge', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'navigation', 0, 0, '', '', '', 0, 'nav_default_odd', 'mod_navigation_odd', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:0:{}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(418, 17, 1560846305, 'Modaler Dialog / Text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Überschrift\";}', 'ct_modal', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', '

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

', '', 'Modaler Dialog mit Text', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(419, 17, 1560846342, 'Modaler Dialog / Text / vertikal zentriert', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Überschrift\";}', 'ct_modal', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, 'modal-dialog-centered', '', '

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

', '', 'Modaler Dialog mit Text, vertikal zentriert', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(420, 17, 1560846329, 'Modaler Dialog / Text / langer Text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Überschrift\";}', 'ct_modal', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', '

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.+Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.+Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

', '', 'Modaler Dialog mit Text, mit Scrolling', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(421, 17, 1560846373, 'Modaler Dialog / Formular', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Überschrift\";}', 'ct_modal', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, 'modal-dialog-centered modal-lg', '', '

{{insert_form::8}}

', '', 'Modaler Dialog mit Formular', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(422, 17, 1560846353, 'Modaler Dialog / Text / vertikal zentriert und breiter', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Überschrift\";}', 'ct_modal', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'nl_simple', NULL, NULL, '', NULL, NULL, '', 'cal_default', 'event_full', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, 'info_default', 'list_default', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_latest', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', NULL, 'com_default', '', '', '', '', 'ascending', 0, NULL, NULL, 'modal-dialog-centered modal-lg', '', '

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

', '', 'Modaler Dialog mit Text, vertikal zentriert und breiter', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `nl_template`, `nl_unsubscribe`, `nl_subscribe`, `nl_hideChannels`, `nl_channels`, `newsletters`, `cal_showQuantity`, `cal_ctemplate`, `cal_template`, `cal_limit`, `cal_readerModule`, `cal_order`, `cal_ignoreDynamic`, `cal_format`, `cal_startDay`, `cal_hideRunning`, `cal_noSpan`, `cal_calendar`, `list_info_layout`, `list_layout`, `list_info_where`, `list_info`, `list_sort`, `list_search`, `list_where`, `list_fields`, `list_table`, `news_showQuantity`, `news_order`, `news_startDay`, `news_format`, `news_template`, `news_metaFields`, `news_readerModule`, `news_jumpToCurrent`, `news_featured`, `news_archives`, `com_template`, `com_disableCaptcha`, `com_requireLogin`, `com_bbcode`, `com_moderate`, `com_order`, `faq_readerModule`, `faq_categories`, `nl_text`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(423, 17, 1638526626, 'Social Feed', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'newslist', 0, 0, '', '', '', 0, '', 'mod_newslist_social_feed', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', '', '', NULL, NULL, NULL, 3600, NULL, '', 15, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', NULL, NULL, '', NULL, NULL, '', '', '', 0, 0, 'ascending', '', 'cal_month', 1, '', '', NULL, '', '', '', '', '', '', '', '', '', '', 'order_date_desc', 0, 'news_month', 'news_social_feed_odd', 'a:2:{i:0;s:4:\"date\";i:1;s:6:\"author\";}', 0, '', 'all_items', 0x613a313a7b693a303b733a313a2233223b7d, '', '', '', '', '', 'ascending', 0, NULL, NULL, '', '', NULL, '', '', NULL); - -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `orderEnclosure`) VALUES(10, 2, 1552644617, 'Wohnhaus in der Görnischen Gasse', 'wohnhaus-in-der-görnischen-gasse', 1, 1517047500, 1517047500, '', NULL, 'Tourismus', '

Dieses Wohnhaus im Stil der Renaissance entstand um 1580. Noch heute sind aus dieser Zeit zahlreiche Schmuckelemente am Haus erhalten: Tür- und Fenstergewände, Konsolsteine und Deckengewölbe.

', '1', '', 0xb525bf9c467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', '', NULL, 'default', 0, 0, '', '', '', '', '', '1', '', '', NULL); -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `orderEnclosure`) VALUES(11, 2, 1552644500, 'Wohnhaus in der Rosengasse', 'wohnhaus-in-der-rosengasse', 1, 1517058300, 1517058300, '', NULL, 'Wohnen', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', '1', '', 0xb81fbc97467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', '', NULL, 'default', 0, 0, '', '', '', '', '', '1', '', '', NULL); -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `orderEnclosure`) VALUES(12, 2, 1552645851, 'Kasernengelände in Meißen-Bohnitzsch', 'kasernengelände-in-meißen-bohnitzsch', 1, 1510844280, 1510844280, '', NULL, 'Wissenswertes', '

Das Kasernengelände in Meißen-Bohnitzsch wurde 1936 angelegt und wurde ab Mai 1945 von der Sowjetunion genutzt. Unter anderem war das 7. Garde-Panzerregiment der GSSD hier untergebracht.

', '1', '', 0xcbc4a14c467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', '', NULL, 'default', 0, 0, '', '', '', '', '', '1', '', '', NULL); -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `orderEnclosure`) VALUES(23, 2, 1552645482, 'Ziegelei am Roten Haus', 'ziegelei-am-roten-haus', 1, 1516965840, 1516965840, '', NULL, 'Industrie', '

Die Ziegelei am Roten Haus war die letzte ihrer Art in Meißen, sie war nach fast 140 Jahren Produktion 1993 geschlossen worden.

', '1', '', 0xc433b88f467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', '', NULL, 'default', 0, 0, '', '', '', '', '', '1', '', '', NULL); -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `orderEnclosure`) VALUES(24, 2, 1552645464, 'Landkrankenhaus', 'landkrankenhaus', 1, 1516965840, 1516965840, '', NULL, 'Wissenswertes', '

Das ehemalige Landkrankenhaus ist seit dem Neubau der Elblandklinik in Meißen-Bohnitzsch ungenutzt.

', '1', '', 0xce7c80c2467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', '', NULL, 'default', 0, 0, '', '', '', '', '', '1', '', '', NULL); -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `orderEnclosure`) VALUES(25, 2, 1552645695, 'Herrenhaus in der Dresdner Straße', 'herrenhaus-in-der-dresdner-straße', 1, 1516965840, 1516965840, '', NULL, 'Wissenswertes', '

Zum \"Elbdom\"-Areal gehörte in den letzten 20 Jahren auch das Grundstück der Unternehmerfamilie Clemens Kurtz in der Dresdner Straße 19.

', '1', '', 0xd285349b467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', '', NULL, 'default', 0, 0, '', '', '', '', '', '1', '', '', NULL); -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `orderEnclosure`) VALUES(26, 2, 1552645808, 'Cöllner Schlösschen', 'cöllner-schlösschen', 1, 1516965840, 1516965840, '', NULL, 'Wissenswertes', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '1', '', 0xc6eaaf6d467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', '', NULL, 'default', 0, 0, '', '', '', '', '', '1', '', '', NULL); -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `orderEnclosure`) VALUES(27, 3, 1638524413, 'schneller. leichter. klimafreundlicher. composer. ...', '', 0, 1637664654, 1637664654, '', NULL, '', 'schneller. leichter. klimafreundlicher. composer.
Mega! 👏

#contao #composer #greenweb', '1', '', NULL, '', '', '', '', '', '', '', 'above', '', NULL, 'external', 0, 0, 'https://www.linkedin.com/feed/update/urn:li:activity:6868863409782345728', '1', '', '', '', '1', '', '', NULL); -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `orderEnclosure`) VALUES(28, 3, 1638524413, 'Wir sind im IHK ecoFinder!\n\nDie pdir GmbH ist nun ...', '', 0, 1637663134, 1637663134, '', NULL, '', 'Wir sind im IHK ecoFinder!

Die pdir GmbH ist nun offiziell eingetragen in Deutschlands größtem Umweltportal - dem IHK ecoFinder. In diesem findet man kompetente Anbieter von Produkten und Dienstleistungen aus der Umwelt- und Energiebranche - schnell, präzise und bundesweit. Wir haben uns zum Thema klimafreundliche Webseiten registrieren lassen 🌱💪

https://lnkd.in/ebG-aKpT

#ihk #ecofriendly #Klimakrise #klimafreundlich #webseite #digitalagentur #greenweb #greenwebdesign #sustainableweb #sustainablewebsite #sustainablewebdesign #klimafreundlichesinternet #klimafreundlichewebseite #pdir #01contaotheme', '1', '', 0x03978afc541d11ec8ee0e0d55e59bff3, '', '', '', '', '', '', '', 'above', '', NULL, 'external', 0, 0, 'https://www.linkedin.com/feed/update/urn:li:activity:6868857032938721280', '1', '', '', '', '1', '', '', NULL); -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `orderEnclosure`) VALUES(29, 3, 1638524413, 'Jaja - ab und zu wagen wir uns auch noch in die an ...', '', 0, 1636452825, 1636452825, '', NULL, '', 'Jaja - ab und zu wagen wir uns auch noch in die analoge Welt und erschaffen das ein oder andere Printprodukt. So richtig zum anfassen - wie die neuen Gutscheine der @diehafenmeister! Diese sind mit UV-Lack vereldelt sogar echt exklusiv geworden - eben passend zur Location ;)

Ach übrigens... Weihnachten steht ja bald vor der Tür und da wäre so ein Gutschein für ein außergewöhnliches Grill-Event bei den Hafenmeistern doch vielleicht ein tolles Geschenk?!?

Von uns jedenfalls wärmstens zu empfehlen! 🤩🤤🥳

👉 https://lnkd.in/eCyFS7nf

#printdesign #flyer #gutschein #eventlocation #dresden #weihnachtsgeschenk #grillevent', '1', '', 0x03978af5541d11ec8ee0e0d55e59bff3, '', '', '', '', '', '', '', 'above', '', NULL, 'external', 0, 0, 'https://www.linkedin.com/feed/update/urn:li:activity:6863780629511770112', '1', '', '', '', '1', '', '', NULL); -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `orderEnclosure`) VALUES(30, 3, 1638524414, 'Zum heutigen Weltinternettag mal ein paar Worte in ...', '', 0, 1635498294, 1635498294, '', NULL, '', 'Zum heutigen Weltinternettag mal ein paar Worte in Richtung Nachhaltigkeit: 🌱

Das Internet verbraucht Strom – und zwar eine Menge. Denn Rechenleistung, Kühlung und Stromversorgung von Tausenden von Servern kosten täglich Unmengen an Energie und verursachen einen enormen CO₂ Ausstoß. Wusstet ihr, dass eine durchschnittliche Webseite mit ca. 10.000 Seitenaufrufen im Monat um die 200 kg CO₂ pro Jahr verantwortet ?!?

Im gleichen Zeitraum bindet ein Baum im Schnitt ca. 11 Kg CO₂. Es müssten also ca. 20 Bäume gepflanzt werden, um das online CO₂ einer einzigen Website durch Bäume wieder zu kompensieren! Puh - das hört sich ziemlich viel an, oder?

Genau das haben wir uns auch gedacht und beschäftigten uns deshalb seit einiger Zeit mit der Erstellung klimafreundlicher Webseiten. Und wir haben festgestellt: Energieeffizientes Webdesign ist mehr als nur umweltfreundlich - es ist automatisch auch performanter, nutzerfreundlicher & SEO-optimierter! 💪

Wie das geht? Erklären wir dir hier:
https://lnkd.in/eRUPN27z

#weltinternettag #greenweb #greenwebdesign #sustainableweb #sustainablewebsite #sustainablewebdesign #klimafreundlichesinternet #klimafreundlichewebseite #webdesign #webdesignagency #webdevelopment #webdevelopmentagency #Klimakrise #klimakrise #pdir #01contaotheme', '1', '', 0x03978aeb541d11ec8ee0e0d55e59bff3, '', '', '', '', '', '', '', 'above', '', NULL, 'external', 0, 0, 'https://www.linkedin.com/feed/update/urn:li:activity:6859777036349702144', '1', '', '', '', '1', '', '', NULL); -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `orderEnclosure`) VALUES(31, 3, 1638524414, 'Tutorial-Video zum 0.1 Isotope Contao Theme verfüg ...', '', 0, 1626425582, 1626425582, '', NULL, '', 'Tutorial-Video zum 0.1 Isotope Contao Theme verfügbar!
Marvin erklärt euch, wie man mit der Contao Shop-Erweiterung Isotope und dem 0.1 Theme einen schicken Webshop erstellt.

Macht er echt gut, schaut mal rein!
Danke Marvin!

https://lnkd.in/eMs6CpE

#webshop #contaocms #contao #isotopeecommerce #contaowebsite #contaowebshop #onlineshop #ecommerce #pdir #01contaotheme', '1', '', 0x03978ae4541d11ec8ee0e0d55e59bff3, '', '', '', '', '', '', '', 'above', '', NULL, 'external', 0, 0, 'https://www.linkedin.com/feed/update/urn:li:activity:6821723323286790144', '1', '', '', '', '1', '', '', NULL); -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `orderEnclosure`) VALUES(32, 3, 1638524414, 'Neues Template für ausgefallene Online Shops!\nUnse ...', '', 0, 1624609850, 1624609850, '', NULL, '', 'Neues Template für ausgefallene Online Shops!
Unser \"schrägstes\" Contao Theme \"ODD\" kann nun auch Produkte präsentieren...

In der Shop-Version steht ein vorkonfigurierter Isotope eCommerce-Shop inkl. optimierter Startseite & typischer Shop-Elemente, wie Themenwelten, Marken und Produktslider im ausgefallenen ODD Style zur Verfügung.

Hier gehts zur DEMO:
https://lnkd.in/eCHGXR8

Hol dir das ODD Shop-Theme und viele weitere schicke Contao Themes hier:
https://contao-themes.net

#onlineshop #ecommerce #websitedesign #websitetemplate #webshop #shoptemplate #onlineshoptemplate
#contao #contaocms #isotopeecommerce #contaoisotope
#pdir #contaotheme #oddcontaotheme #odd', '1', '', 0x03978adc541d11ec8ee0e0d55e59bff3, '', '', '', '', '', '', '', 'above', '', NULL, 'external', 0, 0, 'https://www.linkedin.com/feed/update/urn:li:activity:6814107594328748032', '1', '', '', '', '1', '', '', NULL); -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `orderEnclosure`) VALUES(33, 3, 1638524415, 'Hey! Kennst du schon den pdir Newsletter?\nWas es d ...', '', 0, 1623773734, 1623773734, '', NULL, '', 'Hey! Kennst du schon den pdir Newsletter?
Was es da drin spannendes gibt und warum du den brauchen solltest fragst du dich?

* Du bekommst alle unsere Freebies (nützliche Checklisten, gratis E-Books, ...) als aller erstes
* Du erhältst stets aktuelle Updates zu Themes und Extensions
* Du wirst stets mit wertvollen Tipps, Tricks und unseren Learnings zum Thema Web-Entwicklung und Contao versorgt
* Du bekommst einen Einblick in unseren Agenturalltag und die ein oder andere Anekdote zu lesen
* Manchmal versenden wir auch Hundebaby-Bilder
aber nur selten...

Klingt gut? Dann meld dich hier kostenlos und unverbindlich zum pdir Newsletter an:

https://pdir.de/newsletter

Kein Spam, niemals. Versprochen.

#newsletter #contao #webentwicklung #webdevelopment #websitetheme #websitetemplates #pdir #tippsundtricks #webagenturalltag #bürohund', '1', '', 0x03978ad4541d11ec8ee0e0d55e59bff3, '', '', '', '', '', '', '', 'above', '', NULL, 'external', 0, 0, 'https://www.linkedin.com/feed/update/urn:li:activity:6810600668986974208', '1', '', '', '', '1', '', '', NULL); -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `orderEnclosure`) VALUES(34, 3, 1638524415, 'Online-Shop-Entwickler aufgepasst:\nWir haben dem 0 ...', '', 0, 1622715433, 1622715433, '', NULL, '', 'Online-Shop-Entwickler aufgepasst:
Wir haben dem 0.1 Isoptope Bundle eine schicke Shop-Startseite spendiert - mit vorkonfigurierten Shop-Elementen, wie Themenwelten, Markenlogos und Produktslider im klimafreundlichen 0.1 Stil:

https://lnkd.in/ehSiNUp

Einen schicken, performanten Online-Shop mit Contao aufsetzen? Sollte also kein Problem mehr sein - los gehts!

Das Theme ist auch in der Shopversion (mit 0.46g C02) übrigens immernoch klimafreundlich

#onlineshop #ecommerce #websitedesign #websitetemplate #webshop #shoptemplate
#contao #contaocms #isotopeecommerce #contaoisotope
#pdir #contaotheme #01contaotheme #greenweb #Klimakrise #saveenergy #sustainableweb #sustainablewebdesign', '1', '', 0x03978ac8541d11ec8ee0e0d55e59bff3, '', '', '', '', '', '', '', 'above', '', NULL, 'external', 0, 0, 'https://www.linkedin.com/feed/update/urn:li:activity:6806161831955111936', '1', '', '', '', '1', '', '', NULL); -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `orderEnclosure`) VALUES(35, 3, 1638524420, '3 Jahre DSGVO 😱 und was haben wir daraus gelernt?! ...', '', 0, 1621949572, 1621949572, '', NULL, '', '3 Jahre DSGVO 😱 und was haben wir daraus gelernt?!

Regeln zum Datenschutz gab es auch bereits zu genüge vor Einführung der DSGVO im Mai 2018, aber in diesem Zuge bekam das Thema Datenschutz in Deutschland nochmal eine ganz andere Aufmerksamkeit und es herrschte fortan viel Unsicherheit und Verwirrung. Im Nachhinein lässt sich sagen, dass die ganze Aufregung wohl etwas übertrieben war, die Abmahnwellen bleiben aus, Klarheit über die nun geltenden Regeln allerdings ebenfalls, denn viele sind immer noch schwammig und werden von verschiedenen Experten unterschiedlich ausgelegt.

Was wir davon halten, daraus gelernt haben und uns die Erfahrung gezeigt hat, haben wir dir mal in einem Blogbeitrag festgehalten:

👉 https://lnkd.in/dvsWhzp

#DSGVO #datenschutz #datenschutzrecht #pdir #checkliste #freebie', '1', '', 0x03978a95541d11ec8ee0e0d55e59bff3, '', '', '', '', '', '', '', 'above', '', NULL, 'external', 0, 0, 'https://www.linkedin.com/feed/update/urn:li:activity:6802949578397118464', '1', '', '', '', '1', '', '', NULL); -INSERT INTO `tl_news` (`id`, `pid`, `tstamp`, `headline`, `alias`, `author`, `date`, `time`, `pageTitle`, `description`, `subheadline`, `teaser`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `addEnclosure`, `enclosure`, `source`, `jumpTo`, `articleId`, `url`, `target`, `cssClass`, `noComments`, `featured`, `published`, `start`, `stop`, `orderEnclosure`) VALUES(36, 3, 1638524420, 'Vom GEBEN und NEHMEN\n\nEs ist nicht immer einfach a ...', '', 0, 1621348850, 1621348850, '', NULL, '', 'Vom GEBEN und NEHMEN

Es ist nicht immer einfach als Webentwickler & Dienstleister neben der Entwicklungsarbeit guten Support für die eigenen Produkte zu liefern - aber wir geben stets unser Bestes... und freuen uns wie Schnitzel, wenn unsere Kunden es uns danken.
Deshalb heute ein DANKE an alle Kunden zurück, die uns in letzter Zeit so fleißg positiv bei Google Business bewertet haben!!!

Wenn auch du in dieser Liste erscheinen willt, lass uns gern eine Bewertung da ;)
> https://lnkd.in/eaVbArw
Danke!

#googlerezension #testimonial #businessbewertung #kundenfeedback', '1', '', 0x08043c64541d11ec8ee0e0d55e59bff3, '', '', '', '', '', '', '', 'above', '', NULL, 'external', 0, 0, 'https://www.linkedin.com/feed/update/urn:li:activity:6800429967768391681', '1', '', '', '', '1', '', '', NULL); - -INSERT INTO `tl_newsletter` (`id`, `pid`, `tstamp`, `subject`, `alias`, `content`, `text`, `addFile`, `files`, `template`, `sendText`, `externalImages`, `sender`, `senderName`, `sent`, `date`) VALUES(4, 4, 1511793022, 'Keeping everyone up to date', '', '

Keeping everyone up to date

\n

Contao has a built in Newsletter administration system. It offers some features to create newsletters on a regular basis. Your are able to set up an HTML template, create your newsletters just as plain text or use both functionalities. Even attachments or external images can optionally be integrated.

SATURDAY
December 24th, 2013
7:30 pm

\n

SUNDAY
December 26th, 2013
3:00 pm

\n

Tickets $20[nbsp]to[nbsp]$40

\n

Call (416) 872-4255

', '', '', 0x613a313a7b693a303b4e3b7d, 'mail_default', '', '', '', '', '1', '1511949450'); -INSERT INTO `tl_newsletter` (`id`, `pid`, `tstamp`, `subject`, `alias`, `content`, `text`, `addFile`, `files`, `template`, `sendText`, `externalImages`, `sender`, `senderName`, `sent`, `date`) VALUES(5, 4, 1511948990, 'The right newsletter for everyone', 'the-right-newsletter-for-everyone', '

The right newsletter for everyone

\n

The newsletter functionalities of Contao allows you to create different \"Channels\". So it\'s possible to adress visitors or regular users of your site with their specific interests. Before you send a newsletter to a list of subscribers you can make the use of the option to send a preview. Better check your newsletters on all mail clients. Some of you might know that a lot of mail servers just allow a certain amount of Emails sent within a time-amount: The \"Mails per cycle\" function will help here with larger lists.

SATURDAY
December 24th, 2013
7:30 pm

\n

SUNDAY
December 26th, 2013
3:00 pm

\n

Tickets $20[nbsp]to[nbsp]$40

\n

Call (416) 872-4255

', 'TEXT Content', '', 0x613a313a7b693a303b4e3b7d, 'mail_default', '', '', '', '', '', '1360273849'); - -INSERT INTO `tl_newsletter_channel` (`id`, `tstamp`, `title`, `jumpTo`, `template`, `sender`, `senderName`) VALUES(4, 1539339319, 'Odd / Newsletter', 136, 'mail_default', 'info@example.de', 'Contao Themes'); - -INSERT INTO `tl_news_archive` (`id`, `tstamp`, `title`, `jumpTo`, `protected`, `groups`, `allowComments`, `notify`, `sortOrder`, `perPage`, `moderate`, `bbcode`, `requireLogin`, `disableCaptcha`) VALUES(2, 1638374553, 'Odd / Blog', 108, '', NULL, '1', 'notify_admin', 'ascending', 0, '', '', '', ''); -INSERT INTO `tl_news_archive` (`id`, `tstamp`, `title`, `jumpTo`, `protected`, `groups`, `allowComments`, `notify`, `sortOrder`, `perPage`, `moderate`, `bbcode`, `requireLogin`, `disableCaptcha`) VALUES(3, 1638523142, 'LinkedIn', 90, '', NULL, '', 'notify_admin', 'ascending', 0, '', '', '', ''); - -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(90, 0, 384, 1644931274, 'odd - contao theme', 'odd', 'root', 'odd - contao theme', 'de', '', NULL, 'permanent', 0, '', '', '', '', '', '', '1', '', 'd.m.Y', 'H:i', 'd.m.Y H:i', '1', '', '', NULL, '1', 55, 0, '', 604800, 604800, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', '', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(91, 90, 128, 1540219874, 'Start', 'index', 'regular', 'Odd Theme Demo', '', 'index,follow', 'Auf dieser Seite finden Sie Demo-Inhalte des Odd Themes für das Content-Management-System Contao.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', 'map_default', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(92, 90, 192, 1553272043, 'Module', 'module', 'forward', '', '', 'index,follow', NULL, 'permanent', 93, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 56, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(93, 92, 128, 1553272043, 'News', 'news', 'regular', 'News - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie Newsarchive eingebunden werden können.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(101, 90, 528, 1555059486, 'Elemente', 'elemente', 'forward', '', '', 'index,follow', NULL, 'permanent', 113, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 56, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', 'theme-inspector', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(105, 90, 896, 1540219814, 'ODD Elements', '', 'folder', '', '', '', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(106, 105, 128, 1538489256, '01 / Kopfzeile', '01-kopfzeile', 'regular', '', '', 'index,follow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(107, 105, 256, 1538489266, '02 / Fußzeile', '02-fußzeile', 'regular', '', '', 'index,follow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(108, 93, 128, 1553863983, 'News Detailansicht', 'news-details', 'regular', '', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 50, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(109, 92, 192, 1555073786, 'Events', 'module/events', 'regular', 'Events - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie Eventlisten eingebunden werden können.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(110, 109, 128, 1553272043, 'Event Detailansicht', 'event-details', 'regular', '', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(113, 101, 128, 1553272043, 'Textelemente', 'inhaltselemente/textelemente', 'regular', 'Textelemente - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie verschiedene Beispiele wie Textelemente eingebunden werden können.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(114, 101, 256, 1553272043, 'Akkordion', 'inhaltselemente/akkordion', 'regular', 'Akkordion - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel wie ein Akkordion-Element eingebunden werden kann.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(115, 101, 384, 1553272043, 'Content Slider', 'inhaltselemente/content-slider', 'regular', 'Content Slider - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie verschiedene Beispiele wie Content-Slider eingebunden werden können.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 55, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(116, 101, 512, 1553272043, 'Media-Elemente', 'inhaltselemente/media-elemente', 'regular', 'Media-Elemente - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie verschiedene Beispiele wie Media-Elemente, wie z. B. Bildergalerien oder Videos eingebunden werden können.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(118, 90, 352, 1555062182, 'Layouts', 'layouts', 'forward', '', '', 'index,follow', NULL, 'permanent', 161, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(120, 159, 128, 1555059417, 'Layout mit linker Spalte', 'layouts/layout-mit-linker-spalte', 'regular', 'Layout mit linker Spalte - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel einer Seite mit einer linken Spalte.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 56, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(121, 159, 256, 1555059417, 'Layout mit rechter Spalte', 'layouts/layout-mit-rechter-spalte', 'regular', 'Layout mit rechter Spalte - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel einer Seite mit einer rechten Spalte.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 57, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(122, 118, 96, 1555059495, 'Dreispaltiges Layout', 'layouts/dreispaltiges-layout', 'regular', 'Dreispaltiges Layout', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel einer Seite mit einer linken und rechten Spalte.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 58, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(124, 118, 32, 1555059457, 'Einspaltiges Layout', 'layouts/einspaltiges-layout', 'regular', 'Einspaltiges Layout - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel einer Seite mit nur einer Spalte.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 55, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(127, 101, 576, 1553870717, 'Weitere Theme-Elemente', 'theme-elemente', 'regular', 'Theme-Elemente', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Themes für das Content-Management-System Contao finden Sie verschiedene Beispiele wie weitereTheme Elemente eingebunden werden können.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(128, 101, 544, 1553272043, 'Download-Elemente', 'style-guide/download-elemente', 'regular', 'Download-Elemente - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie verschiedene Beispiele wie Download-Elemente eingebunden werden können.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(129, 92, 384, 1553272043, 'Navigation', 'module/navigation', 'regular', 'Navigation - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie die verschiedenen Navigationstypen eingebunden werden können.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(130, 92, 512, 1553272043, 'User', 'module/user', 'regular', 'User - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie User-Module (z. B. Login- und Registrierung) eingebunden werden können.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(131, 92, 640, 1553272043, 'Newsletter', 'module/newsletter', 'regular', 'Newsletter - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie ein Newsletter eingebunden werden kann.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(132, 92, 768, 1553272043, 'FAQ', 'module/faq', 'regular', 'FAQ - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel, wie ein FAQ eingebunden werden kann.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(133, 92, 896, 1553272043, 'Formulare', 'module/formulare', 'regular', 'Formulare - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie Formulare eingebunden werden kann.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(134, 90, 704, 1553272043, 'Impressum', 'impressum', 'regular', 'Impressum - Mate Theme', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(135, 133, 128, 1574341960, 'Formular-Bestätigung', 'module/anwendungen/formular-bestaetigung', 'regular', 'Ihre Anfrage wurde abgesendet', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 55, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(136, 131, 128, 1553272043, 'Newsletter-Details', 'module/newsletter/newsletter-details', 'regular', '', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(137, 132, 128, 1553272043, 'FAQ-Details', 'module/faq/faq-details', 'regular', 'FAQ-Details', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(138, 92, 1024, 1553272043, 'Suche', 'module/suche', 'regular', 'Suche - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie eine Suche eingebunden werden kann.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(139, 90, 800, 1555067757, 'Kontakt', 'kontakt', 'regular', 'Kontakt - Mate Theme', '', 'index,follow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel einer Kontakt-Seite mit Anschrift und Kontaktformular.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 57, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', 'contact', 'map_default', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(140, 90, 64, 1538488861, '404 Seite nicht gefunden', '404-seite-nicht-gefunden', 'error_404', '404 Seite nicht gefunden', '', 'index,follow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', '', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(141, 90, 96, 1560845846, '403 Zugriff verweigert', '403-zugriff-verweigert', 'error_401', '403 Zugriff verweigert', '', 'index,follow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', '', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(144, 90, 848, 1553272043, 'Newsletter abonniert (Aktivierung)', 'newsletter-aktivierung', 'regular', '', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(145, 90, 872, 1553272043, 'Newsletter abbestellt (Deaktivierung)', 'newsletter-kuendigung', 'regular', '', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(148, 90, 836, 1553272043, 'Newsletter abonniert (Bestätigungsmail)', 'newsletter-abonniert', 'regular', '', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 55, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(150, 156, 512, 1555059538, 'ohne Schräge', 'layouts/headerbild-layouts/ohne-schräge', 'regular', '', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(156, 118, 24, 1555062174, 'Headerbild Layouts', 'layouts/headerbild-layouts', 'forward', '', '', 'noindex,nofollow', NULL, 'permanent', 157, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 56, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(157, 156, 256, 1555059314, 'Schräge nach links', 'layouts/headerbild-layouts/schräge-nach-links', 'regular', '', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(158, 156, 384, 1555059305, 'Schräge nach rechts', 'layouts/headerbild-layouts/schräge-nach-rechts', 'regular', '', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(159, 118, 64, 1555059520, 'Zweispaltiges Layout', 'layouts/zweispaltiges-layout', 'forward', '', '', 'noindex,nofollow', NULL, 'permanent', 120, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', 'map_never', '', '1', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(161, 118, 16, 1575631566, 'Layout mit geradem Header', 'layouts/layout-mit-geradem-header', 'regular', '', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 59, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(162, 118, 256, 1555061298, 'Elemente mit Schrägen', 'layouts/elemente-mit-schrägen', 'regular', '', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(164, 92, 1152, 1560781890, 'Modale Dialoge', 'module/modale-dialoge', 'regular', '', '', 'index,follow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', 'map_default', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); - -INSERT INTO `tl_theme` (`id`, `tstamp`, `name`, `author`, `folders`, `screenshot`, `templates`, `vars`, `pdir_th_short_code`, `pdir_th_license_domain`, `pdir_th_description`) VALUES(17, 1566205456, 'Odd Theme', 'pdir digital agentur // pdir GmbH / Juliane Langer, Philipp Seibt, Mathias Arzberger', NULL, NULL, '', 'a:0:{}', 'odd', '', '<b>pdir contao theme licence</b><br>\nMit dieser <b>Lizenz</b> gekennzeichnete Themes dürfen sowohl privat als auch kommerziell eingesetzt werden. Der Copyright-Link bzw. die Copyright-Links \"<i>ODD Theme by montequesto</i>\" dürfen nicht entfernt oder verändert werden. Das gilt auch wenn Sie das Theme\nnur als Basis für eine Website einsetzen und es verändern.\nMöchten Sie diesen Theme ohne Copyright-Link einsetzen, müssen Sie eine kostenpflichtige Lizenz erwerben.'); -COMMIT; - -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; diff --git a/src/templates/odd_theme_contao_demo_4.9.x_minimal_installtool.sql b/src/templates/odd_theme_contao_demo_4.9.x_minimal_installtool.sql deleted file mode 100644 index f8e939a..0000000 --- a/src/templates/odd_theme_contao_demo_4.9.x_minimal_installtool.sql +++ /dev/null @@ -1,566 +0,0 @@ -SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; -SET AUTOCOMMIT = 0; -START TRANSACTION; -SET time_zone = "+00:00"; - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8mb4 */; - - -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(117, 91, 384, 1560848068, 'Slider', 'slider', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:23:\"slider fullwidth skw-br\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(118, 120, 64, 1554459150, 'Header', 'article-header', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-bl\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(119, 92, 128, 1511440816, 'Module', 'module', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(131, 101, 64, 1511440816, 'Slider', 'slider-19', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(132, 101, 128, 1511440816, 'Style Guide', 'style-guide', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(136, 107, 64, 1538489284, '02/01 Adressdaten', '02-01-adressdaten', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', 'ODD02/01'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(137, 107, 96, 1538489300, '02/02 Kontaktdaten', '02-02-kontaktdaten', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', 'ODD02/02'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(138, 107, 112, 1538489313, '02/03 Social Media Icons', '02-03-social-media-icons', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', 'ODD02/03'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(139, 107, 120, 1538489329, '02/04 Footer-Navigation', '02-04-footer-navigation', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', 'ODD02/04'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(140, 107, 124, 1538489341, '02/05 Copyright-Hinweis', '02-05-copyright-hinweis', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', 'ODD02/05'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(145, 106, 512, 1538489196, '01/01 Logo', '01-01-logo', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', 'ODD01/01'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(153, 113, 128, 1511440816, 'Textelemente', 'inhaltselemente-textelemente', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(154, 114, 128, 1511440816, 'Akkordion', 'inhaltselemente-akkordion', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(156, 116, 128, 1511440816, 'Media-Elemente', 'inhaltselemente-media-elemente', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(159, 120, 128, 1511440816, 'Layout mit linker Spalte', 'layouts-layout-mit-linker-spalte', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(160, 121, 128, 1511440816, 'Layout mit rechter Spalte', 'layouts-layout-mit-rechter-spalte', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(161, 122, 128, 1511441564, 'Layout mit linker und rechter Spalte', 'layouts-layout-mit-linker-und-rechter-spalte', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(165, 124, 128, 1511442061, 'Einspaltiges Layout', 'layouts-einspaltiges-layout', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(169, 127, 128, 1553878908, 'Weitere ODD Elemente', 'odd-elemente', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(170, 121, 64, 1555059636, 'Header', 'article-header-170', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-bl\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(171, 128, 128, 1511528829, 'Download-Elemente', 'style-guide-download-elemente', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(172, 129, 128, 1511529951, 'Navigation', 'module-navigation', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(173, 130, 128, 1511529962, 'User', 'module-user', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(176, 133, 128, 1511530050, 'Anwendungen', 'module-anwendungen', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(177, 134, 128, 1511532246, 'Impressum', 'impressum', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(178, 135, 128, 1511778176, 'Formular-Bestätigung', 'module-anwendungen-formular-bestaetigung', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(181, 138, 128, 1511953599, 'Suche', 'module-suche', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(182, 106, 640, 1538489223, '01/02 Top Navbar', '01-02-top-navbar', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', 'ODD01/02'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(184, 139, 128, 1555067798, 'Kontaktformular', 'kontakt', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(185, 140, 128, 1516628462, '404 Seite nicht gefunden', '404-seite-nicht-gefunden', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(186, 141, 128, 1516628325, '403 Zugriff verweigert', '403-zugriff-verweigert', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(193, 122, 32, 1539349600, 'Header', 'article-header-193', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-bl\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(194, 124, 64, 1539349619, 'Header', 'article-header-194', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-bl\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(197, 91, 512, 1552643358, 'Intro', 'intro', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(198, 91, 640, 1637664098, 'News', 'news', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:24:\"primary-bg skw-tr skw-br\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(199, 91, 768, 1540212382, 'Teaserbox', 'teaserbox', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(209, 91, 896, 1540221815, 'Contentbox', 'contentbox', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(210, 91, 1024, 1552645291, 'Abschlusstext', 'abschlusstext', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(214, 91, 960, 1553870655, 'Preistabelle', 'preistabelle', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(215, 91, 832, 1553873058, 'Trenner', 'trenner', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(216, 91, 928, 1553873086, 'Trenner', 'trenner-216', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(220, 150, 64, 1554459178, 'Header', 'article-header-220', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(228, 157, 256, 1555328537, 'Header', 'article-header-228', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-bl\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(229, 157, 384, 1555060468, 'Schräge nach links', 'schräge-nach-links', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(230, 158, 256, 1555060311, 'Header', 'article-header-230', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-br\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(231, 158, 384, 1555060458, 'Schräge nach rechts', 'schräge-nach-rechts', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(232, 150, 192, 1555060446, 'ohne Schräge', 'ohne-schräge', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(234, 161, 256, 1555060909, 'Header', 'article-header-234', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-bl\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(235, 161, 384, 1575631587, 'Layout mit geradem Header', 'layout-mit-geradem-header', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(236, 122, 256, 1555061099, 'Rechte Spalte', 'rechte-spalte', 1, 'right', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(237, 162, 128, 1555061650, 'Text', 'text', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(238, 162, 64, 1555061378, 'Header', 'article-header-238', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-br\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(239, 162, 256, 1555061489, 'Schräge / oben rechts / unten rechts', 'schräge-oben-rechts-unten-rechts', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:24:\"primary-bg skw-tr skw-br\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(240, 162, 384, 1555061664, 'Text', 'text-240', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(241, 162, 512, 1555061700, 'Schräge / oben links / unten links', 'schräge-oben-links-unten-links', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:24:\"primary-bg skw-tl skw-bl\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(242, 162, 640, 1555061890, 'Text', 'text-242', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(243, 162, 768, 1555061781, 'Schräge / oben links / unten rechts', 'schräge-oben-links-unten-rechts', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:24:\"primary-bg skw-tl skw-br\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(244, 162, 896, 1555061898, 'Text', 'text-244', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(245, 162, 1024, 1555061840, 'Schräge / oben rechts / unten links', 'schräge-oben-rechts-unten-links', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:24:\"primary-bg skw-tr skw-bl\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(246, 162, 1152, 1555061883, 'Text', 'text-246', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(247, 162, 1280, 1555062292, 'Schräge / oben rechts', 'schräge-oben-rechts', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:17:\"primary-bg skw-tr\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(248, 162, 1408, 1555063442, 'Text', 'text-248', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(251, 139, 256, 1555067790, 'Kontaktdaten', 'kontaktdaten', 1, 'right', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', '', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(252, 139, 64, 1555068566, 'Header', 'article-header-252', 1, 'header', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"skw-br\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(253, 115, 256, 1560511469, 'Slider', 'slider-2', 1, 'main', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', NULL, '', 'mod_article_fullwidth', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:23:\"slider fullwidth skw-br\";}', '1', '', '', '', '-'); -INSERT INTO `tl_article` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `author`, `inColumn`, `keywords`, `showTeaser`, `teaserCssID`, `teaser`, `printable`, `customTpl`, `protected`, `groups`, `guests`, `cssID`, `published`, `start`, `stop`, `pdir_th_domain`, `pdir_th_tag`) VALUES(255, 164, 128, 1560781890, 'Modale Dialoge', 'module-modale-dialoge', 1, 'main', NULL, '', '', NULL, '', '', '', NULL, '', '', '1', '', '', '', ''); - -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(381, 131, 'tl_article', 272, 1488455906, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:52:\"einfaches Bild mit Überschrift und Bildunterschrift\";}', NULL, '', '1', 0x512b86c6ff2011e6ba9f408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', 'mit Klasse \"smaller\" würde das Bild nur 400px hoch sein', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_header', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(382, 153, 'tl_article', 384, 1511280898, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

h1-Überschrift

\n

h2-Überschrift

\n

h3-Überschrift

\n

h4-Überschrift

\n
h5-Überschrift
\n
h6-Überschrift
', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(399, 12, 'tl_news', 128, 1552650130, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Das Kasernengelände in Meißen-Bohnitzsch wurde 1936 angelegt und wurde ab Mai 1945 von der Sowjetunion genutzt. Unter anderem war das 7. Garde-Panzerregiment der GSSD hier untergebracht.

', '', '', 0x6c880b87002611e88700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"300\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '', '', 'left', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(400, 153, 'tl_article', 576, 1539351368, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:89:\"Eine Überschrift mit der Klasse \"bordered-heading\" ist linksbündig und mit Unterstrich\";}', '

Eine Überschrift mit der Klasse \"bordered-heading\"
ist linksbündig und mit Unterstrich

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(401, 153, 'tl_article', 612, 1539351363, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:104:\"Eine Überschrift mit den Klassen \"bordered-heading text-sm-right\" ist rechtsbündig und mit Unterstrich\";}', '

Eine Überschrift mit den Klassen \"bordered-heading right\" ist rechtsbündig und mit Unterstrich

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-sm-right', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(402, 153, 'tl_article', 672, 1539351599, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

[class .col-12 .col-md-6] Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(403, 153, 'tl_article', 720, 1539351609, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

[class .col-12 .col-md-6] Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(404, 153, 'tl_article', 756, 1511282466, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(407, 118, 'tl_article', 128, 1554458686, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:24:\"Layout mit linker Spalte\";}', NULL, '', '', 0xc942253a467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', 'sdsds', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(460, 153, 'tl_article', 768, 1511280660, 'list', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:17:\"nummerierte Liste\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, 'ordered', 0x613a343a7b693a303b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a313b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a323b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a333b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b7d, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(461, 153, 'tl_article', 896, 1511280653, 'list', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:19:\"unnummerierte Liste\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, 'unordered', 0x613a343a7b693a303b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a313b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a323b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b693a333b733a33323a22506f727a656c6c616e2d20756e64205765696e7374616474204d6569c39f656e223b7d, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(462, 132, 'tl_article', 384, 1511280957, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:11:\"Style Guide\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(463, 153, 'tl_article', 192, 1553878794, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:12:\"Textelemente\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(467, 153, 'tl_article', 1024, 1511284040, 'hyperlink', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:4:\"Link\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '{{link_url::90}}', '', '', 'Normaler Link', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '1', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(468, 153, 'tl_article', 1152, 1511284059, 'toplink', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', 'Top-Link', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '1', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(471, 154, 'tl_article', 128, 1552651351, 'accordionStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', 'Stadterkunden in Meißen auf eine ganz besondere Art', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(472, 154, 'tl_article', 256, 1552651360, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(473, 154, 'tl_article', 384, 1511284664, 'accordionStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(474, 154, 'tl_article', 512, 1552651391, 'accordionStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', 'Erinnerungen', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(475, 154, 'tl_article', 640, 1552651371, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(476, 154, 'tl_article', 768, 1511284674, 'accordionStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(477, 154, 'tl_article', 896, 1552651399, 'accordionStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', 'Botschaften aus der Vergangenheit', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(478, 154, 'tl_article', 1024, 1552651380, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(479, 154, 'tl_article', 1152, 1511284683, 'accordionStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(480, 154, 'tl_article', 64, 1553878812, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:9:\"Akkordion\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(504, 156, 'tl_article', 128, 1553878872, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:14:\"Media-Elemente\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(506, 156, 'tl_article', 512, 1554464836, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Dreispaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"510\";i:1;s:3:\"300\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a363a7b693a303b733a31363a22c09740c7467611e9a91c408d5c22fa41223b693a313b733a31363a22c433b88f467611e9a91c408d5c22fa41223b693a323b733a31363a22b92fb24e467611e9a91c408d5c22fa41223b693a333b733a31363a22c942253a467611e9a91c408d5c22fa41223b693a343b733a31363a22d285349b467611e9a91c408d5c22fa41223b693a353b733a31363a22c416cb81467611e9a91c408d5c22fa41223b7d, 0x613a363a7b693a303b733a31363a22c09740c7467611e9a91c408d5c22fa41223b693a313b733a31363a22c433b88f467611e9a91c408d5c22fa41223b693a323b733a31363a22b92fb24e467611e9a91c408d5c22fa41223b693a333b733a31363a22c942253a467611e9a91c408d5c22fa41223b693a343b733a31363a22d285349b467611e9a91c408d5c22fa41223b693a353b733a31363a22c416cb81467611e9a91c408d5c22fa41223b7d, '', 3, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(507, 156, 'tl_article', 1792, 1555056806, 'youtube', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, 'mfo0iHDrBN8', '', NULL, 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(509, 156, 'tl_article', 256, 1539353264, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:24:\"Galerie (Contao)\";}', '

Die Anordnung der Bilder passt sich je nachdem wie viele Spalten ausgewählt sind automatisch an.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(556, 169, 'tl_article', 128, 1553878919, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:20:\"Weitere ODD-Elemente\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(564, 169, 'tl_article', 256, 1516980271, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:11:\"Content Box\";}', '

Die Content Box lässt sich über das Inhaltselement mateContentBox an jeder beliebigen Stelle platzieren. Es kann eine Überschrift, ein Text sowie ein Link/Linktext angegeben werden. Breite und Farben der Boxen werden durch das Vergeben von CSS-Klassen bzw. über die CSS-Datei angepasst.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(565, 169, 'tl_article', 640, 1516980281, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:9:\"Teaserbox\";}', '

Die[nbsp]Teaserbox lässt sich über das Inhaltselement mateTeaserBox an jeder beliebigen Stelle platzieren. Es kann ein Bild, eine Überschrift, ein Text sowie ein Link/Linktext angegeben werden. Die Breite der Boxen[nbsp]kann durch das Vergeben von CSS-Klassen angepasst werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(567, 170, 'tl_article', 128, 1552650880, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:25:\"Layout mit rechter Spalte\";}', NULL, '', '', 0xc09740c7467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(571, 153, 'tl_article', 1408, 1539352121, 'table', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:30:\"Tabelle mit Elementtyp Tabelle\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, 0x613a353a7b693a303b613a333a7b693a303b733a363a22486561642031223b693a313b733a363a22486561642032223b693a323b733a363a22486561642033223b7d693a313b613a333a7b693a303b733a383a22436f6c756d6e2031223b693a313b733a383a22436f6c756d6e2032223b693a323b733a383a22436f6c756d6e2033223b7d693a323b613a333a7b693a303b733a383a22436f6c756d6e2031223b693a313b733a383a22436f6c756d6e2032223b693a323b733a383a22436f6c756d6e2033223b7d693a333b613a333a7b693a303b733a383a22436f6c756d6e2031223b693a313b733a383a22436f6c756d6e2032223b693a323b733a383a22436f6c756d6e2033223b7d693a343b613a333a7b693a303b733a383a22436f6c756d6e2031223b693a313b733a383a22436f6c756d6e2032223b693a323b733a383a22436f6c756d6e2033223b7d7d, '', '1', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(572, 153, 'tl_article', 1536, 1511528123, 'code', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:4:\"Code\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', 'JavaScript', '', '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(573, 153, 'tl_article', 1664, 1511528199, 'markdown', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', '## Markdown\n\nSince Contao 3.3.x Contao ships with the markdown content element. \n\n##### What is Markdown?\n\n> Markdown is a markup language with plain text formatting syntax designed so that it can be converted to HTML and many other formats using a tool by the same name.', '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:8:\"markdown\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(574, 171, 'tl_article', 128, 1553878882, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:17:\"Download-Elemente\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(575, 171, 'tl_article', 256, 1552651865, 'download', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, '', '', 0xb0ad636c467611e9a91c408d5c22fa41, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', 'Einzelnes Download-Element', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '1', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(576, 171, 'tl_article', 384, 1552651907, 'downloads', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:9:\"Downloads\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a363a7b693a303b733a31363a22bd8cb98b467611e9a91c408d5c22fa41223b693a313b733a31363a22d285349b467611e9a91c408d5c22fa41223b693a323b733a31363a22c416cb81467611e9a91c408d5c22fa41223b693a333b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b7d, 0x613a363a7b693a303b733a31363a22bd8cb98b467611e9a91c408d5c22fa41223b693a313b733a31363a22d285349b467611e9a91c408d5c22fa41223b693a323b733a31363a22c416cb81467611e9a91c408d5c22fa41223b693a333b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b7d, '', 4, 0, 0, 'custom', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(580, 172, 'tl_article', 128, 1553877182, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:10:\"Navigation\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(589, 173, 'tl_article', 128, 1553877192, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:4:\"User\";}', '

Test-Zugangsdaten:

\n

User: mate-user
Passwort: mate theme

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(590, 173, 'tl_article', 256, 1539335021, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 403, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(592, 173, 'tl_article', 384, 1539335052, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 407, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(595, 173, 'tl_article', 304, 1539335029, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 404, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(596, 173, 'tl_article', 312, 1539335038, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 405, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(597, 173, 'tl_article', 316, 1539335046, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 406, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(599, 173, 'tl_article', 192, 1516703706, 'text', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:17:\"Test-Zugangsdaten\";}', '

Username: j.smith
Password: johnsmith

\n

Username: d.evans
Password: donnaevans

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(600, 177, 'tl_article', 128, 1525853618, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:9:\"Impressum\";}', '

Verantwortlicher Diensteanbieter im Sinne von § 5 Telemediengesetz (TMG),

\n

Inhaber der Domain www.example-domain.de

\n

Firma
Musterstraße 12
00000 Musterhausen

\n

Telefon: +49 (0)1234 / 5678910
E-Mail: info@example.de

\n

[nbsp]

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(601, 176, 'tl_article', 128, 1553877228, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:11:\"Anwendungen\";}', '

Für das, wie in den folgenden Formularen, dargestellte Upload-Feld, muss das Template form_mate_upload im Formulargenerator bei dem jeweiligen Element ausgewählt werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(602, 176, 'tl_article', 256, 1539346665, 'form', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:30:\"Formular (tabellenlos)\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 6, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(604, 178, 'tl_article', 128, 1511778265, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:30:\"Ihre Anfrage wurde übertragen\";}', '

Ihre Anfrage wurde erfolgreich versendet und wir werden uns in Kürze mit Ihnen in Verbindung setzen.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(616, 181, 'tl_article', 128, 1539347874, 'module', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 415, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(617, 181, 'tl_article', 64, 1553877236, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:5:\"Suche\";}', '

Im Suchmaschinen-Modul muss das Template search_mate ausgewählt werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(639, 172, 'tl_article', 224, 1539334631, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:22:\"Unterseiten-Navigation\";}', '

Navigations-Modul mit der Klasse subnav

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(654, 153, 'tl_article', 648, 1540221151, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(655, 153, 'tl_article', 726, 1540221157, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(662, 186, 'tl_article', 128, 1516628515, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:24:\"403 - Zugriff verweigert\";}', '

Auf die von Ihnen angeforderte Seite haben Sie leider keinen Zugriff.

\n

Sie könnten stattdessen zur Startseite navigieren oder uns kontaktieren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(663, 185, 'tl_article', 128, 1516628505, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:26:\"404 - Seite nicht gefunden\";}', '

Die von Ihnen angeforderte Seite wurde leider nicht gefunden. Vielleicht haben Sie sich vertippt oder die Seite existiert nicht mehr.

\n

Sie könnten stattdessen zur Startseite navigieren oder uns kontaktieren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(664, 156, 'tl_article', 1664, 1516980207, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"YouTube\";}', '

Damit sich das Video auch auf verschiedenen Endgeräten responsiv verhält, muss bei dem Elementtyp YouTube das Template ce_youtube_mate ausgewählt werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(680, 22, 'tl_calendar_events', 128, 1552650379, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(681, 23, 'tl_calendar_events', 128, 1552650346, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(682, 24, 'tl_calendar_events', 128, 1552650363, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Dieses Wohnhaus im Stil der Renaissance entstand um 1580.

', '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(684, 26, 'tl_calendar_events', 128, 1552650329, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', 0xd5b2a583028211e88700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"400\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(688, 10, 'tl_news', 128, 1552650042, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Dieses Wohnhaus im Stil der Renaissance entstand um 1580. Noch heute sind aus dieser Zeit zahlreiche Schmuckelemente am Haus erhalten: Tür- und Fenstergewände, Konsolsteine und Deckengewölbe.

', '', '', 0xde74085cfd2011e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"500\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:2:\"15\";s:4:\"unit\";s:2:\"px\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(689, 11, 'tl_news', 128, 1552650025, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', '', '', 0xa09827bfcb5d11e79a22408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:1:\"0\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:2:\"15\";s:4:\"unit\";s:2:\"px\";}', '', '', '', 'left', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(701, 27, 'tl_calendar_events', 128, 1552650410, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet.

', '', '', 0xd05728a0028211e88700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"500\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '', '', 'left', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(702, 28, 'tl_calendar_events', 128, 1552650395, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"300\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:2:\"15\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(706, 23, 'tl_news', 32, 1552650056, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Die Ziegelei am Roten Haus war die letzte ihrer Art in Meißen, sie war nach fast 140 Jahren Produktion 1993 geschlossen worden.

', '', '', 0xa09827bfcb5d11e79a22408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:1:\"0\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:2:\"15\";s:4:\"unit\";s:2:\"px\";}', '', '', '', 'left', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(707, 24, 'tl_news', 128, 1552650073, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Das ehemalige Landkrankenhaus ist seit dem Neubau der Elblandklinik in Meißen-Bohnitzsch ungenutzt.

', '', '', 0x7009c414028811e88700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"700\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:2:\"30\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(708, 25, 'tl_news', 32, 1552650084, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Zum \"Elbdom\"-Areal gehörte in den letzten 20 Jahren auch das Grundstück der Unternehmerfamilie Clemens Kurtz in der Dresdner Straße 19.

', '', '', 0xbeaf67b1028211e88700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"400\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:1:\"0\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '', '', 'left', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(709, 26, 'tl_news', 128, 1552650101, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(721, 159, 'tl_article', 128, 1552650587, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe.[nbsp]929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(726, 159, 'tl_article', 256, 1552650787, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(743, 159, 'tl_article', 384, 1540220710, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(744, 159, 'tl_article', 1024, 1540220716, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(745, 159, 'tl_article', 512, 1552650706, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(746, 159, 'tl_article', 640, 1552650714, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(747, 159, 'tl_article', 768, 1552650650, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(748, 159, 'tl_article', 896, 1552650692, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(749, 159, 'tl_article', 320, 1552650561, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(783, 193, 'tl_article', 128, 1555060980, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:20:\"Dreispaltiges Layout\";}', NULL, '', '', 0xae24b6cc467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(784, 194, 'tl_article', 128, 1553878074, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:19:\"Einspaltiges Layout\";}', NULL, '', '', 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(792, 184, 'tl_article', 124, 1555068392, 'form', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 8, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(797, 251, 'tl_article', 128, 1555069654, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:12:\"Kontaktdaten\";}', '

Mustermann GmbH
Musterstraße 12
00000 Musterhausen

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(803, 184, 'tl_article', 64, 1555068611, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:30:\"Bleiben Sie mit uns in Kontakt\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(807, 153, 'tl_article', 1280, 1517820154, 'hyperlink', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '#', '', '', 'Button', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"btn\";}', '', '', '', '', '', NULL, '1', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(810, 145, 'tl_article', 128, 1644834392, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, '', '1', 0xc96d0cf7472811e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"25\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '{{link_url::90|urlattr}}', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(812, 182, 'tl_article', 256, 1553852915, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

info@example.org

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:5:\"email\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', NULL, 'far fa-envelope', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(813, 182, 'tl_article', 384, 1540216548, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:12:\"social-media\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(814, 182, 'tl_article', 512, 1540216554, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(815, 182, 'tl_article', 448, 1540306869, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Facebook

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', 'https://www.facebook.com/', 'fab fa-facebook-f', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(816, 182, 'tl_article', 480, 1540306883, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Twitter

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', 'https://twitter.com/', 'fab fa-twitter', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(817, 182, 'tl_article', 496, 1540306897, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Instagram

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', 'https://www.instagram.com/', 'fab fa-instagram', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(818, 182, 'tl_article', 504, 1540306925, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Pinterest

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', 'https://www.pinterest.de/', 'fab fa-pinterest-p', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(819, 182, 'tl_article', 508, 1540306943, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Linked In

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', 'https://de.linkedin.com/', 'fab fa-linkedin-in', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(820, 136, 'tl_article', 128, 1538490759, 'text', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Adressdaten\";}', '

Musterfirma GmbH
Musterstraße 127
01234 Musterstadt

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(821, 137, 'tl_article', 128, 1553270517, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

+ 49 (0) 0123 4567890

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-phone', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(822, 137, 'tl_article', 256, 1540216645, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

+ 49 (0) 0123 456789

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-mobile', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(823, 137, 'tl_article', 384, 1540216655, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

+ 49 (0) 0123 4567891

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-fax', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(824, 137, 'tl_article', 512, 1540563691, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

info@example.org

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'far fa-envelope', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(825, 137, 'tl_article', 64, 1538491017, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:12:\"Kontaktdaten\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(826, 138, 'tl_article', 128, 1540307110, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Facebook

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-facebook-f', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(827, 138, 'tl_article', 256, 1540307120, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Twitter

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-twitter', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(828, 138, 'tl_article', 384, 1540307160, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Instagram

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-instagram', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(829, 138, 'tl_article', 512, 1540307177, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Pinterest

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-pinterest-p', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(830, 138, 'tl_article', 640, 1540307187, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Linked In

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-linkedin-in', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(831, 138, 'tl_article', 64, 1538491124, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:12:\"Social Media\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(832, 139, 'tl_article', 128, 1538491199, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:9:\"Odd Theme\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(833, 139, 'tl_article', 256, 1538491192, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 373, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(834, 140, 'tl_article', 128, 1560846799, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

© Firma / {{date::Y}} / Odd Theme by montequesto

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(838, 117, 'tl_article', 128, 1553851804, 'sliderStart', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '1', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(839, 117, 'tl_article', 256, 1539088811, 'sliderStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(840, 117, 'tl_article', 192, 1552657173, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Dank der Saalkapazitäten fanden in dem traditionsreichen Haus zahlreiche Großveranstaltungen statt. Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '1', '', 0xc942253a467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Kultur & Freizeit', 'Mehr dazu', '{{event_url::26}}'); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(841, 117, 'tl_article', 224, 1552657262, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Keramikfabrik\";}', '

Bei der Produktion von Kachelöfen, Wandplatten, Porzellanen und Schamotte war Meißen um 1900 führend in Deutschland. Die für Kachelöfen entwickelte Meißner Patentkachel war wohl in den meisten deutschen Wohnzimmern zu finden.

', '1', '', 0xae24b6cc467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Industrie', 'Mehr dazu', '{{link_url::120}}'); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(842, 117, 'tl_article', 208, 1552657181, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '1', '', 0xc416cb81467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Sport', 'Mehr erfahren', '{{event_url::27}}'); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(843, 117, 'tl_article', 248, 1552657268, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:29:\"E-Werk in der Brauhausstraße\";}', '

Das ehemalige Elektrizitätswerk an der Brauhausstraße ging 1911 in Betrieb und lieferte Strom für die Meißner Innenstadt. Nach 1990 wurde das E-Werk stillgelegt und 2004 wurde das Kesselhaus im hinteren Grundstücksbereich abgerissen.

', '1', '', 0xb92fb24e467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Industrie', 'Weiterlesen', '{{link_url::121}}'); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(844, 117, 'tl_article', 216, 1552657188, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:21:\"Kaserne in Bohnitzsch\";}', '

Das Kasernengelände in Meißen-Bohnitzsch wurde 1936 angelegt und wurde ab Mai 1945 von der Sowjetunion genutzt. Unter anderem war das 7. Garde-Panzerregiment der GSSD hier untergebracht.

', '1', '', 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Militär', 'Mehr dazu', '{{news_url::12}}'); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(845, 197, 'tl_article', 128, 1552643659, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:28:\"bordered-heading text-center\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(846, 197, 'tl_article', 256, 1540220465, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(847, 197, 'tl_article', 384, 1540220471, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(848, 197, 'tl_article', 320, 1552644010, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(849, 197, 'tl_article', 352, 1552643989, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(850, 198, 'tl_article', 128, 1645107145, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Diese Räumlichkeiten sind Zeitdokumente. Ihre Ablichtung vielleicht die letzte vor dem endgültigen Abriss oder vor einer Sanierung, die alle Spuren der Vergangenheit verwischen werden. Sie wurden sorgfältig dokumentiert, ohne am Ort etwas zu verändern. Da die Fotografien grundsätzlich im - oft sehr spärlichen - natürlichen Licht vor Ort aufgenommen wurden, kam meist die HDR-Technik zum Einsatz, die

\n

Abbildungen mit hocher Farbintensität und fast malerischem Flair hervorbringt. Die Bilder entstanden im Einverständnis der jeweiligen Grundstückseigentümer.
Der Autor dankt allen, die ihm den Besuch dieser verlassenen Orte ermöglichten und der Veröffentlichung der dort entstandenen Aufnahmen zustimmten.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(851, 199, 'tl_article', 128, 1540215730, 'ct_wrapperStart', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Platzhalter für Teaserboxen

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(853, 199, 'tl_article', 256, 1540215704, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(855, 199, 'tl_article', 224, 1554457312, 'ct_teaserBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:22:\"Ziegelei am Roten Haus\";}', '

Die Spezialität der Ziegelei war zu DDR-Zeiten die Herstellung von Hochlochziegeln - leichten, großformatigen Ziegeln für den Wohnungsbau.

', '1', '', 0xc433b88f467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'Mehr dazu', '{{news_url::23}}', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-4', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(856, 199, 'tl_article', 240, 1554457318, 'ct_teaserBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '1', '', 0xb0ad636c467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'Mehr dazu', '{{event_url::28}}', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-4', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(859, 198, 'tl_article', 64, 1552662465, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:9:\"Aktuelles\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-center', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(863, 172, 'tl_article', 352, 1539334592, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 384, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(876, 153, 'tl_article', 630, 1553879193, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:101:\"Eine Überschrift mit den Klassen \"bordered-heading text-sm-center\" ist zentriert und mit Unterstrich\";}', '

Eine Überschrift mit den Klassen \"bordered-heading right\" ist rechtsbündig und mit Unterstrich

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-sm-center', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(877, 153, 'tl_article', 1472, 1539352288, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:27:\"Tabelle mit Elementtyp Text\";}', '\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
Column 1Column 2Column 3
Column 1Column 2Column 3
Column 1Column 2Column 3
Verbundene Zeilen
', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(885, 209, 'tl_article', 256, 1554457368, 'ct_contentBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Dank der Saalkapazitäten fanden in dem traditionsreichen Haus zahlreiche Großveranstaltungen statt. Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-3\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr dazu', '{{event_url::26}}', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(886, 209, 'tl_article', 128, 1540222509, 'ct_wrapperStart', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Platzhalter für Teaserboxen

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"row no-margin\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit der Klasse \'row\'', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(887, 209, 'tl_article', 640, 1540215843, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(889, 199, 'tl_article', 160, 1554457306, 'ct_teaserBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:19:\"Das Landkrankenhaus\";}', '

Das ehemalige Landkrankenhaus ist seit dem Neubau der Elblandklinik in Meißen-Bohnitzsch ungenutzt.

', '1', '', 0xce7c80c2467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'Mehr dazu', '{{news_url::24}}', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(890, 209, 'tl_article', 384, 1552652907, 'ct_contentBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Keramikfabrik\";}', '

Bei der Produktion von Kachelöfen, Wandplatten, Porzellanen und Schamotte war Meißen um 1900 führend in Deutschland. Die für Kachelöfen entwickelte Meißner Patentkachel war wohl in den meisten deutschen Wohnzimmern zu finden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-3\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr dazu', '{{link_url::120}}', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(892, 182, 'tl_article', 64, 1553852907, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

+ 49 (0) 123 45678

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:5:\"phone\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', NULL, 'fas fa-phone', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(893, 169, 'tl_article', 768, 1553879082, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:22:\"Preis-Tabelle 3 stufig\";}', '

Beispiel 1:

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(894, 169, 'tl_article', 896, 1540307443, 'ct_priceBox', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"Paket A\";}', '

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', 'Mehr Infos', '{{link_url::90}}', 'Jetzt bestellen', '{{link_url::90}}', 'pro Monat, zzgl. MwSt.', '99,99 €', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(895, 169, 'tl_article', 832, 1540301947, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"row no-margin\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(896, 169, 'tl_article', 1024, 1540217731, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(897, 169, 'tl_article', 960, 1540307450, 'ct_priceBox', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"Paket B\";}', '

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', 'Am beliebtesten', 'Mehr Infos', '90', 'Jetzt bestellen', '90', 'pro Monat, zzgl. MwSt.', '249,99 €', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(898, 169, 'tl_article', 992, 1540219169, 'ct_priceBox', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"Paket C\";}', '

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', 'Mehr Infos', '90', 'Jetzt bestellen', '90', 'pro Monat, zzgl. MwSt.', '49,99 €', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(899, 169, 'tl_article', 1152, 1540219594, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:19:\"Einfache Inhaltsbox\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(900, 169, 'tl_article', 1280, 1552652309, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:24:\"Stadterkunden in Meißen\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(901, 169, 'tl_article', 1216, 1540219647, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(902, 169, 'tl_article', 1408, 1540219653, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(903, 169, 'tl_article', 1344, 1552652333, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:12:\"Erinnerungen\";}', '

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(904, 169, 'tl_article', 704, 1540219734, 'ct_wrapperStart', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Platzhalter für Teaserboxen

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(905, 169, 'tl_article', 736, 1552652219, 'ct_teaserBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:19:\"Wohnhaus Rosengasse\";}', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', '1', '', 0xb81fbc97467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'Mehr dazu', '90', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(906, 169, 'tl_article', 752, 1552652238, 'ct_teaserBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Keramikfabrik\";}', '

Bei der Produktion von Kachelöfen, Wandplatten, Porzellanen und Schamotte war Meißen um 1900 führend in Deutschland. Die für Kachelöfen entwickelte Meißner Patentkachel war wohl in den meisten deutschen Wohnzimmern zu finden.

', '1', '', 0xae24b6cc467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'Mehr dazu', '90', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-4', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(907, 169, 'tl_article', 760, 1552652257, 'ct_teaserBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '1', '', 0xc416cb81467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"19\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, 'Mehr dazu', '90', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-4', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(908, 169, 'tl_article', 764, 1540219734, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(909, 169, 'tl_article', 448, 1540219772, 'ct_wrapperStart', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie)', '

Platzhalter für Teaserboxen

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit der Klasse \'row\'', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(910, 169, 'tl_article', 544, 1552652156, 'ct_contentBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr dazu', '90', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(911, 169, 'tl_article', 592, 1552652166, 'ct_contentBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Keramikfabrik\";}', '

Bei der Produktion von Kachelöfen, Wandplatten, Porzellanen und Schamotte war Meißen um 1900 führend in Deutschland. Die für Kachelöfen entwickelte Meißner Patentkachel war wohl in den meisten deutschen Wohnzimmern zu finden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr dazu', '90', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(912, 169, 'tl_article', 616, 1552652180, 'ct_contentBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:19:\"Wohnhaus Rosengasse\";}', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr dazu', '90', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(913, 169, 'tl_article', 628, 1540219772, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(914, 209, 'tl_article', 512, 1554457380, 'ct_contentBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:19:\"Wohnhaus Rosengasse\";}', '

Die volkstümliche Deutung, in der Gasse hätten die \"Rosen der Stadt\", also die leichten Mädchen, gewohnt, lässt sich nicht belegen. Das hier besuchte Haus scheint auch eher eine Wohnstätte von Kobolden und Hexenmeistern gewesen zu sein ...

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-3\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr erfahren', '{{news_url::11}}', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(915, 209, 'tl_article', 352, 1552652897, 'ct_contentBox', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-lg-3\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, 'Mehr dazu', '{{event_url::27}}', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(917, 169, 'tl_article', 1088, 1553879106, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:21:\"Preistabelle 2 stufig\";}', '

Beispiel 1:

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(918, 169, 'tl_article', 1120, 1540301976, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"row no-margin\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(919, 169, 'tl_article', 1136, 1540302061, 'ct_priceBox', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"Paket A\";}', '

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-6\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', 'Mehr Infos', '90', 'Jetzt bestellen', '90', 'pro Monat, zzgl. MwSt.', '99,99 €', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(920, 169, 'tl_article', 1144, 1540302044, 'ct_priceBox', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:7:\"Paket B\";}', '

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

\n

Lorem ipsum dolor sit amet

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-6\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', 'Mehr Infos', '90', 'Jetzt bestellen', '90', 'pro Monat, zzgl. MwSt.', '249,99 €', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(922, 169, 'tl_article', 1150, 1540301976, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(927, 210, 'tl_article', 256, 1540306574, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(928, 210, 'tl_article', 320, 1553869218, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Diese Räumlichkeiten sind Zeitdokumente. Ihre Ablichtung vielleicht die letzte vor dem endgültigen Abriss oder vor einer Sanierung, die alle Spuren der Vergangenheit verwischen werden. Sie wurden sorgfältig dokumentiert, ohne am Ort etwas zu verändern. Da die Fotografien grundsätzlich im - oft sehr spärlichen - natürlichen Licht vor Ort aufgenommen wurden, kam meist die HDR-Technik zum Einsatz, die

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(929, 210, 'tl_article', 352, 1553869224, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Abbildungen mit hocher Farbintensität und fast malerischem Flair hervorbringt. Die Bilder entstanden im Einverständnis der jeweiligen Grundstückseigentümer.
Der Autor dankt allen, die ihm den Besuch dieser verlassenen Orte ermöglichten und der Veröffentlichung der dort entstandenen Aufnahmen zustimmten.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(930, 210, 'tl_article', 384, 1540306574, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(931, 117, 'tl_article', 252, 1552657274, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"VEB Ziegelwerk Rotes Haus\";}', '

Die Ziegelei am Roten Haus war die letzte ihrer Art in Meißen, sie war nach fast 140 Jahren Produktion 1993 geschlossen worden.

', '1', '', 0xc09740c7467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Industrie', 'Weiterlesen', '{{news_url::23}}'); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(933, 210, 'tl_article', 512, 1553875181, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:5:\"quote\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(934, 160, 'tl_article', 128, 1552650990, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe.[nbsp]929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(935, 160, 'tl_article', 256, 1552650983, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(936, 160, 'tl_article', 384, 1552650995, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(937, 160, 'tl_article', 512, 1552650983, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(938, 160, 'tl_article', 640, 1552651001, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(939, 160, 'tl_article', 768, 1552651007, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(940, 160, 'tl_article', 896, 1552651013, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(941, 160, 'tl_article', 1024, 1552651018, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(942, 160, 'tl_article', 1152, 1552650983, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(945, 161, 'tl_article', 128, 1552651039, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe.[nbsp]929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(946, 161, 'tl_article', 256, 1552651034, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(947, 161, 'tl_article', 384, 1552651047, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(948, 161, 'tl_article', 512, 1552651034, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(949, 161, 'tl_article', 640, 1552651092, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(950, 161, 'tl_article', 768, 1552651098, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(951, 161, 'tl_article', 896, 1552651105, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(952, 161, 'tl_article', 1024, 1552651111, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(953, 161, 'tl_article', 1152, 1552651034, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(954, 161, 'tl_article', 1280, 1552651122, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:20:\"Letzte Blogeinträge\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(955, 161, 'tl_article', 1408, 1552651034, 'module', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(956, 165, 'tl_article', 128, 1552651144, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe.[nbsp]929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(957, 165, 'tl_article', 256, 1552651140, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(958, 165, 'tl_article', 384, 1552651150, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(959, 165, 'tl_article', 512, 1552651140, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(960, 165, 'tl_article', 640, 1552651155, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(961, 165, 'tl_article', 768, 1552651161, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(962, 165, 'tl_article', 896, 1552651166, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(963, 165, 'tl_article', 1024, 1552651172, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(964, 165, 'tl_article', 1152, 1552651140, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(978, 156, 'tl_article', 640, 1554464808, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Vierspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a343a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b7d, 0x613a343a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b7d, '', 4, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(986, 169, 'tl_article', 1536, 1552653271, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-home', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(987, 169, 'tl_article', 1664, 1552653413, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-check', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(988, 169, 'tl_article', 1472, 1552653438, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:14:\"Text mit Icons\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(989, 199, 'tl_article', 64, 1553867230, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:14:\"Die Highlights\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:28:\"bordered-heading text-center\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(990, 210, 'tl_article', 128, 1553877648, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:28:\"bordered-heading text-center\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(991, 210, 'tl_article', 640, 1553868952, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Alle Fotos © Claus-Dirk Langer, Dresden/Meißen

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(998, 214, 'tl_article', 64, 1553870516, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"row no-margin\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(999, 214, 'tl_article', 116, 1553873824, 'ct_priceBox', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Urban Exploring Foto-Reise\";}', '

Hin und Rückfahrt

\n

5 tägige Abenteuerreise

\n

Übernachtung und volle Verpflegung

\n

Urbexplorer/örtlicher Guide

\n

Urbexplorer Expeditionsfahrzeug

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', 'Am beliebtesten', 'Mehr Infos', '{{link_url::93}}', 'Jetzt bestellen', '{{link_url::139}}', 'max. 7 Personen', '550 €', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1000, 214, 'tl_article', 112, 1553873803, 'ct_priceBox', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Urban Exploring Foto-Tour\";}', '

bis zu 10 Stunden fotografieren

\n

3 atemberaubende Industrieobjekte

\n

Übernachtung mit Frühstück

\n

Mitfahrgelegenheit

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', 'Mehr Infos', '{{link_url::93}}', 'Jetzt bestellen', '{{link_url::139}}', 'pro Person, inkl. MwSt.', '180 €', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1001, 214, 'tl_article', 120, 1553873842, 'ct_priceBox', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:30:\"Urban Exploring Foto-Abenteuer\";}', '

9 Tage Fotoabenteuer

\n

inclusive Flug von Deutschland

\n

Übernachtung in Guesthouses

\n

deutschsprachiger Guide von Urbexplorer

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:15:\"col-12 col-md-4\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', 'Mehr Infos', '{{link_url::93}}', 'Jetzt bestellen', '{{link_url::139}}', 'Gruppenrabatt möglich', '1.490 €', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1002, 214, 'tl_article', 124, 1553870516, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1003, 215, 'tl_article', 128, 1553873070, 'html', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', '
', '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', '
', '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:8:\"bordered\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1006, 216, 'tl_article', 128, 1553873079, 'html', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', '
', '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', '
', '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:8:\"bordered\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1007, 156, 'tl_article', 384, 1554464827, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Zweispaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"510\";i:1;s:3:\"200\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a323a7b693a303b733a31363a22b92fb24e467611e9a91c408d5c22fa41223b693a313b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b7d, 0x613a323a7b693a303b733a31363a22b92fb24e467611e9a91c408d5c22fa41223b693a313b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b7d, '', 2, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1020, 220, 'tl_article', 128, 1554459204, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:24:\"Headerbild ohne Schräge\";}', NULL, '', '', 0xc942253a467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"16\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', 'sdsds', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1022, 156, 'tl_article', 768, 1554464897, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:12:\"Fünfspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a353a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b7d, 0x613a353a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b7d, '', 5, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1023, 156, 'tl_article', 896, 1554464908, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Sechspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a363a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b7d, 0x613a363a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b7d, '', 6, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1024, 156, 'tl_article', 1024, 1554464918, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:13:\"Siebenspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a373a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b7d, 0x613a373a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b7d, '', 7, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1025, 156, 'tl_article', 1152, 1554464925, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Achtspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a383a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b7d, 0x613a383a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b7d, '', 8, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1026, 156, 'tl_article', 1280, 1554464985, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Neunspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a393a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a383b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b7d, 0x613a393a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a383b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b7d, '', 9, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1027, 156, 'tl_article', 1408, 1554464993, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:11:\"Zehnspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a31303a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a383b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b693a393b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b7d, 0x613a31303a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a383b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b693a393b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b7d, '', 10, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1028, 156, 'tl_article', 1472, 1554465027, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:10:\"Elfspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a31313a7b693a303b733a31363a22c09740c7467611e9a91c408d5c22fa41223b693a313b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a323b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a333b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a343b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a353b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a363b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a373b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a383b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a393b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b693a31303b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b7d, 0x613a31313a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a383b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b693a393b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b693a31303b733a31363a22c09740c7467611e9a91c408d5c22fa41223b7d, '', 11, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1029, 156, 'tl_article', 1504, 1554465044, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:13:\"Zwölfspaltig\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"247\";i:1;s:3:\"247\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a31323a7b693a303b733a31363a22c09740c7467611e9a91c408d5c22fa41223b693a313b733a31363a22c433b88f467611e9a91c408d5c22fa41223b693a323b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a333b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a343b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a353b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a363b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a373b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a383b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a393b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a31303b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b693a31313b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b7d, 0x613a31323a7b693a303b733a31363a22cbc4a14c467611e9a91c408d5c22fa41223b693a313b733a31363a22ccb24364467611e9a91c408d5c22fa41223b693a323b733a31363a22ae24b6cc467611e9a91c408d5c22fa41223b693a333b733a31363a22ce7c80c2467611e9a91c408d5c22fa41223b693a343b733a31363a22c6eaaf6d467611e9a91c408d5c22fa41223b693a353b733a31363a22b525bf9c467611e9a91c408d5c22fa41223b693a363b733a31363a22b0b560c5467611e9a91c408d5c22fa41223b693a373b733a31363a22b81fbc97467611e9a91c408d5c22fa41223b693a383b733a31363a22b2d63e05467611e9a91c408d5c22fa41223b693a393b733a31363a22b0ad636c467611e9a91c408d5c22fa41223b693a31303b733a31363a22c09740c7467611e9a91c408d5c22fa41223b693a31313b733a31363a22c433b88f467611e9a91c408d5c22fa41223b7d, '', 12, 0, 0, 'custom', '', 'gallery_default', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1033, 228, 'tl_article', 128, 1555060408, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:34:\"Headerbild mit Schräge nach links\";}', NULL, '', '', 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1034, 229, 'tl_article', 128, 1555059685, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe.[nbsp]929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1035, 229, 'tl_article', 256, 1555059685, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1036, 229, 'tl_article', 384, 1555059685, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1037, 229, 'tl_article', 512, 1555059685, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1038, 229, 'tl_article', 640, 1555059685, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1039, 229, 'tl_article', 768, 1555059685, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1040, 229, 'tl_article', 896, 1555059685, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1041, 229, 'tl_article', 1024, 1555059685, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1042, 229, 'tl_article', 1152, 1555059685, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1045, 230, 'tl_article', 128, 1555060418, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:35:\"Headerbild mit Schräge nach rechts\";}', NULL, '', '', 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1046, 231, 'tl_article', 128, 1555060297, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe.[nbsp]929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1047, 231, 'tl_article', 256, 1555060297, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1048, 231, 'tl_article', 384, 1555060297, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1049, 231, 'tl_article', 512, 1555060297, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1050, 231, 'tl_article', 640, 1555060297, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1051, 231, 'tl_article', 768, 1555060297, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1052, 231, 'tl_article', 896, 1555060297, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1053, 231, 'tl_article', 1024, 1555060297, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1054, 231, 'tl_article', 1152, 1555060297, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1057, 232, 'tl_article', 128, 1555060437, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe.[nbsp]929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1058, 232, 'tl_article', 256, 1555060437, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1059, 232, 'tl_article', 384, 1555060437, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1060, 232, 'tl_article', 512, 1555060437, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1061, 232, 'tl_article', 640, 1555060437, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1062, 232, 'tl_article', 768, 1555060437, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1063, 232, 'tl_article', 896, 1555060437, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1064, 232, 'tl_article', 1024, 1555060437, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1065, 232, 'tl_article', 1152, 1555060437, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1068, 234, 'tl_article', 128, 1575631603, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:25:\"Layout mit geradem Header\";}', NULL, '', '', 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1069, 235, 'tl_article', 128, 1555060887, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"Hinter vergessenen Mauern\";}', '

Die oft als die “Wiege Sachsens” bezeichnete Stadt Meißen liegt etwa 15 km nordwestlich von der Landeshauptstadt Dresden an der Mündung von Triebisch und Meisa in die Elbe.[nbsp]929 wurde die Burg Meißen und die Markgrafschaft Meißen auf dem Bergsporn über der Elbe gegründet. Meißen gehört zu den am nördlichsten gelegenen Weinanbaugebieten in Deutschland und befindet sich mitten im Herzen der Sächsischen Weinstraße. Bekannt wurde die im Jahre 1150 ertmals als “civitas” bezeichete Stadt durch die erste europäische Porzellanmanufaktur und deren charakteristische “Blauen Schwerter”.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1070, 235, 'tl_article', 256, 1555060887, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";} (Kopie) (Kopie) (Kopie)', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

\n

Nimm nichts mit außer Fotografien. Lass nichts zurück außer Fußabdrücke.

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1071, 235, 'tl_article', 384, 1555060887, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Verlassene Orte in Meißen\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1072, 235, 'tl_article', 512, 1555060887, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:3:\"row\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', 'Inhaltscontainer mit Klasse \"row\"', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1073, 235, 'tl_article', 640, 1555060887, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1074, 235, 'tl_article', 768, 1555060887, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1075, 235, 'tl_article', 896, 1555060887, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:26:\"Zuckerwarenfabrik \"Elbdom\"\";}', '

Das Hamburger Unternehmen \"Langelütje\" stellte hier neben verschiedenen Sorten Bonbons vorrangig Kunsthonig her.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1076, 235, 'tl_article', 1024, 1555060887, 'text', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:16:\"Rittergut Cölln\";}', '

Das oft auch als \"Rittergut Cölln\" bezeichnete Cöllner Schlösschen befindet sich, etwas Richtung Elbe zurückgesetzt, an der Dresdner Straße.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_text_cthemes_simplebox', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'col-12 col-md-6', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1077, 235, 'tl_article', 1152, 1555060887, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 0, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1081, 238, 'tl_article', 128, 1555061396, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:22:\"Elemente mit Schrägen\";}', NULL, '', '', 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1082, 239, 'tl_article', 64, 1555061513, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:37:\"Schräge - oben rechts - unten rechts\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-center', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1083, 239, 'tl_article', 128, 1555061529, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1085, 237, 'tl_article', 256, 1555061622, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1086, 240, 'tl_article', 256, 1555061657, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1087, 241, 'tl_article', 64, 1555061727, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:35:\"Schräge - oben links - unten links\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-center', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1088, 241, 'tl_article', 128, 1555061671, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1089, 242, 'tl_article', 256, 1555061752, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1090, 243, 'tl_article', 64, 1555061799, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:36:\"Schräge - oben links - unten rechts\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-center', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1091, 243, 'tl_article', 128, 1555061752, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1092, 244, 'tl_article', 256, 1555061752, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1093, 245, 'tl_article', 64, 1555061872, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:36:\"Schräge - oben rechts - unten links\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-center', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1094, 245, 'tl_article', 128, 1555061752, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1095, 246, 'tl_article', 256, 1555061878, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1096, 247, 'tl_article', 64, 1555062327, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:26:\"Schräge - nur oben rechts\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', 'text-center', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1097, 247, 'tl_article', 128, 1555062276, 'text', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

\n

Die Bilder sind faszinierend und erschütternd zugleich. Die Räume versprühen einen morbiden Charme - verrostete Maschinen, morsche Diehlen, wuchernder Farn auf Parkettfußböden. Mithilfe der zerstörerischen Kraft des Wassers - wenn es ein Haus vom Dach bis zum Keller durchströmt und seine Spuren an Decken und Wänden, Anstrichen und Tapeten, Inventar und Installation hinterlässt - erobert sich die Natur ihren Lebensraum zurück. In all dem Chaos kurz vor dem endgültigen Untergang finden sich Botschaften aus der Vergangenheit, von der einstigen Bestimmung, den einstigen Bewohnern und Nutzern: zurückgelassene Möbel, alte Zeitungen, verrostetes Werkzeug, stehengebliebene Uhren.

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 391, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1098, 248, 'tl_article', 256, 1555062276, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Stadterkunden in Meißen auf eine ganz besondere Art - mit der Kamera unterwegs in Häusern, die seit Jahren kein Mensch mehr betreten hat und in denen die Zeit scheinbar stehen geblieben ist. \"Urban Exploring\" wird diese Art der privaten Entdeckung städtischer Refugien genannt, die der Öffentlichkeit seit Jahrzehnten verborgen waren.

\n

Oft sind die Bauten von außen sehr bekannt und mancher Meißner erinnert sich noch an ihr \"Innenleben\", war im \"Hamburger Hof\" zum Tanzvergnügen, im Landkrankenhaus zur Reihenuntersuchung, lernte in der Zaschendorfer Schule oder arbeitete in der Schuhfabrik. Doch wie sieht es jetzt dort aus? Was ist aus diesen Orten geworden?

', '', '', 0xecca9086ff5b11e78700408d5c22fa41, '', '', 'a:3:{i:0;s:3:\"200\";i:1;s:0:\"\";i:2;s:12:\"proportional\";}', 'a:5:{s:6:\"bottom\";s:2:\"15\";s:4:\"left\";s:2:\"30\";s:5:\"right\";s:1:\"0\";s:3:\"top\";s:2:\"20\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', 'right', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"bordered-left\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1104, 252, 'tl_article', 128, 1555068558, 'image', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:7:\"Kontakt\";}', NULL, '', '', 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"17\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', 'ce_image_headerimage_odd', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1105, 251, 'tl_article', 256, 1555068793, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h4\";s:5:\"value\";s:12:\"Social Media\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1106, 251, 'tl_article', 384, 1555068772, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Facebook

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-facebook-f', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1107, 251, 'tl_article', 512, 1555068772, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Twitter

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-twitter', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1108, 251, 'tl_article', 640, 1555068772, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Instagram

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-instagram', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1109, 251, 'tl_article', 768, 1555068772, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Pinterest

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-pinterest-p', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1110, 251, 'tl_article', 896, 1555068772, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

Linked In

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fab fa-linkedin-in', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1111, 251, 'tl_article', 320, 1555069491, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"contact-icons\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1112, 251, 'tl_article', 1024, 1555068866, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1113, 251, 'tl_article', 192, 1555069533, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

+ 49 (0) 0123 4567890

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-phone', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1114, 251, 'tl_article', 224, 1555069533, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

+ 49 (0) 0123 456789

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-mobile', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1115, 251, 'tl_article', 240, 1555069533, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

+ 49 (0) 0123 4567891

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'fas fa-fax', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1116, 251, 'tl_article', 248, 1555069534, 'ct_featureElement', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";} (Kopie)', '

info@example.org

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', 'far fa-envelope', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1117, 251, 'tl_article', 160, 1555069542, 'ct_wrapperStart', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:13:\"contact-icons\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1118, 251, 'tl_article', 252, 1555069547, 'ct_wrapperStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1119, 253, 'tl_article', 128, 1560511460, 'sliderStart', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '1', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1120, 253, 'tl_article', 192, 1560511460, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Hamburger Hof\";}', '

Dank der Saalkapazitäten fanden in dem traditionsreichen Haus zahlreiche Großveranstaltungen statt. Tanzveranstaltungen, Messen und zahlreiche Feste ließen den \"Hamburger Hof\" zu einem beliebten Freizeitreff werden.

', '1', '', 0xc942253a467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Kultur & Freizeit', 'Mehr dazu', '{{event_url::26}}'); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1121, 253, 'tl_article', 208, 1560511460, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:9:\"Jahnhalle\";}', '

Die Turnhalle wurde 1893/95 im Auftrag des Turnvereins \"Frisch Auf\" errichtet. Anlässlich des 100. Todestags von \"Turnvater\" Jahn erhielt die Halle den offiziellen Namen Friedrich-Ludwig-Jahn-Turnhalle.

', '1', '', 0xc416cb81467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Sport', 'Mehr erfahren', '{{event_url::27}}'); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1122, 253, 'tl_article', 216, 1560511460, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:21:\"Kaserne in Bohnitzsch\";}', '

Das Kasernengelände in Meißen-Bohnitzsch wurde 1936 angelegt und wurde ab Mai 1945 von der Sowjetunion genutzt. Unter anderem war das 7. Garde-Panzerregiment der GSSD hier untergebracht.

', '1', '', 0xccb24364467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Militär', 'Mehr dazu', '{{news_url::12}}'); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1123, 253, 'tl_article', 224, 1560511460, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Keramikfabrik\";}', '

Bei der Produktion von Kachelöfen, Wandplatten, Porzellanen und Schamotte war Meißen um 1900 führend in Deutschland. Die für Kachelöfen entwickelte Meißner Patentkachel war wohl in den meisten deutschen Wohnzimmern zu finden.

', '1', '', 0xae24b6cc467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Industrie', 'Mehr dazu', '{{link_url::120}}'); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1124, 253, 'tl_article', 248, 1560511460, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:29:\"E-Werk in der Brauhausstraße\";}', '

Das ehemalige Elektrizitätswerk an der Brauhausstraße ging 1911 in Betrieb und lieferte Strom für die Meißner Innenstadt. Nach 1990 wurde das E-Werk stillgelegt und 2004 wurde das Kesselhaus im hinteren Grundstücksbereich abgerissen.

', '1', '', 0xb92fb24e467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Industrie', 'Weiterlesen', '{{link_url::121}}'); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1125, 253, 'tl_article', 252, 1560511460, 'sliderElement', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:25:\"VEB Ziegelwerk Rotes Haus\";}', '

Die Ziegelei am Roten Haus war die letzte ihrer Art in Meißen, sie war nach fast 140 Jahren Produktion 1993 geschlossen worden.

', '1', '', 0xc09740c7467611e9a91c408d5c22fa41, '', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:2:\"24\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:0:\"\";}', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', 'Industrie', 'Weiterlesen', '{{news_url::23}}'); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1126, 253, 'tl_article', 256, 1560511460, 'sliderStop', '', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', '', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1129, 255, 'tl_article', 128, 1560782354, 'headline', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:14:\"Modale Dialoge\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:16:\"bordered-heading\";}', '', '', '', 'none', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1130, 255, 'tl_article', 256, 1560782390, 'module', 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 418, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', 'none', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1131, 255, 'tl_article', 384, 1560783378, 'module', 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 419, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', 'none', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1132, 255, 'tl_article', 512, 1560783579, 'module', 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 420, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', 'none', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1133, 255, 'tl_article', 640, 1560783641, 'module', 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 421, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', 'none', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1134, 255, 'tl_article', 448, 1560843081, 'module', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 422, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', 'none', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1135, 197, 'tl_article', 64, 1641290342, 'module', 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', NULL, '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 423, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '1', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', NULL, NULL, NULL); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1137, 156, 'tl_article', 192, 1644934174, 'gallery', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:10:\"Referenzen\";}', NULL, '', '', NULL, '', '', 'a:3:{i:0;s:3:\"510\";i:1;s:3:\"200\";i:2;s:4:\"crop\";}', 'a:5:{s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:2:\"15\";s:3:\"top\";s:0:\"\";s:4:\"unit\";s:2:\"px\";}', '', '1', '', '', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', 0x613a323a7b693a303b733a31363a22b92fb24e467611e9a91c408d5c22fa41223b693a313b733a31363a22c09740c7467611e9a91c408d5c22fa41223b7d, 0x613a323a7b693a303b733a31363a22b92fb24e467611e9a91c408d5c22fa41223b693a313b733a31363a22c09740c7467611e9a91c408d5c22fa41223b7d, '', 2, 0, 0, 'custom', '', 'gallery_default_references', '', NULL, '', '', 0x00000000000000000000000000000000, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', '', '', NULL, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', '', '', '', '', ''); -INSERT INTO `tl_content` (`id`, `pid`, `ptable`, `sorting`, `tstamp`, `type`, `headline`, `text`, `addImage`, `overwriteMeta`, `singleSRC`, `alt`, `imageTitle`, `size`, `imagemargin`, `imageUrl`, `fullsize`, `caption`, `floating`, `html`, `listtype`, `listitems`, `tableitems`, `summary`, `thead`, `tfoot`, `tleft`, `sortable`, `sortIndex`, `sortOrder`, `mooHeadline`, `mooStyle`, `mooClasses`, `highlight`, `code`, `url`, `target`, `titleText`, `linkTitle`, `embed`, `rel`, `useImage`, `multiSRC`, `orderSRC`, `useHomeDir`, `perRow`, `perPage`, `numberOfItems`, `sortBy`, `metaIgnore`, `galleryTpl`, `customTpl`, `playerSRC`, `youtube`, `vimeo`, `posterSRC`, `playerSize`, `sliderDelay`, `sliderSpeed`, `sliderStartSlide`, `sliderContinuous`, `cteAlias`, `articleAlias`, `article`, `form`, `module`, `protected`, `groups`, `guests`, `cssID`, `invisible`, `start`, `stop`, `playerAspect`, `inline`, `youtubeOptions`, `overwriteLink`, `playerOptions`, `vimeoOptions`, `playerStart`, `playerStop`, `playerColor`, `playerPreload`, `splashImage`, `playerCaption`, `ct_sliderElement_playerSRC`, `ct_sliderElement_subHeadline`, `ct_sliderElement_target`, `ct_sliderElement_linkText`, `ct_sliderElement_page`, `ct_wrapper_name`, `ct_teaserBox_customTpl`, `ct_teaserBox_pageTitle`, `ct_teaserBox_pageText`, `ct_teaserBox_page`, `ct_priceBox_customTpl`, `ct_popularPriceBox`, `ct_priceBox_linkText2`, `ct_priceBox_link2`, `ct_priceBox_linkText1`, `ct_priceBox_link1`, `ct_priceLabel`, `ct_price`, `ct_featureElement_customTpl`, `ct_iconLink`, `ct_featureIcon`, `ct_contentBox_customTpl`, `ct_contentBox_pageTitle`, `ct_contentBox_pageText`, `ct_contentBox_page`, `advancedCss`, `odd_subHeadline`, `odd_linkText`, `odd_page`) VALUES(1138, 236, 'tl_article', 128, 1645107384, 'text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', '

Inhalt für rechte Spalte ...

', '', '', NULL, '', '', '', '', '', '', '', 'above', NULL, '', NULL, NULL, '', '', '', '', '', 0, 'ascending', '', '', '', '', NULL, '', '', '', '', '', '', '', NULL, NULL, '', 4, 0, 0, '', '', '', '', NULL, '', '', NULL, '', 0, 300, 0, '', 0, 0, 0, 0, 0, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '', '', '', NULL, '', NULL, NULL, 0, 0, '', '', '', '', NULL, '', '', '', '', NULL, '', NULL, NULL, NULL, '', '', NULL, NULL, NULL, NULL, '', '', '', NULL, '', '', NULL, NULL, NULL, '', NULL, NULL, NULL); - -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(718, NULL, 1538489608, 0x5556381bc64d11e88ff2408d5c22fa41, 'folder', 'files/odd', '', 'c62b1ec4b5c5a4e2a186bce08cb64b48', '1', 'odd', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(720, 0x5556381bc64d11e88ff2408d5c22fa41, 1538489691, 0x86ee99abc64d11e88ff2408d5c22fa41, 'folder', 'files/odd/img', '', '079c14b1399536cf8514e64cb93453ed', '1', 'img', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(755, 0x86ee99abc64d11e88ff2408d5c22fa41, 1552579599, 0x267f1df5467311e9a91c408d5c22fa41, 'folder', 'files/odd/img/verlassene-orte-meissen', '', '5652813e47ef238e3e5e167a24da3428', '1', 'verlassene-orte-meissen', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(796, 0x267f1df5467311e9a91c408d5c22fa41, 1553878188, 0xae24b6cc467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/keramikfabrik.jpg', 'jpg', 'b477fb4521e9dea4d4ccf8cddc88bdb5', '1', 'keramikfabrik.jpg', 0.00048828125, 0.243401759531, 0.99951171875, 0.593108504399, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(797, 0x267f1df5467311e9a91c408d5c22fa41, 1552658157, 0xb0ad636c467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/zuckerwarenfabrik-elbdom.jpg', 'jpg', '01b19ac855e4dc1edf18a048cfaa8100', '1', 'zuckerwarenfabrik-elbdom.jpg', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(798, 0x267f1df5467311e9a91c408d5c22fa41, 1552658153, 0xb0b560c5467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/wohnhaus-rosengasse-1.jpg', 'jpg', '6b30092e92ea58c487f633022bdafa7a', '1', 'wohnhaus-rosengasse-1.jpg', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(799, 0x267f1df5467311e9a91c408d5c22fa41, 1552658156, 0xb2d63e05467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/wohnhaus-rosengasse-3.jpg', 'jpg', '33416ee1cda94de335dba34bfe8c34ee', '1', 'wohnhaus-rosengasse-3.jpg', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(800, 0x267f1df5467311e9a91c408d5c22fa41, 1552658152, 0xb525bf9c467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/wohnhaus-goernische-gasse.jpg', 'jpg', '9e9abd17d1a49053d11924edcebccf1e', '1', 'wohnhaus-goernische-gasse.jpg', 0, 0.139205662603, 1, 0.181281950452, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(801, 0x267f1df5467311e9a91c408d5c22fa41, 1552658155, 0xb81fbc97467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/wohnhaus-rosengasse-2.jpg', 'jpg', 'ef1a07b23859899a734e925d7a2c9700', '1', 'wohnhaus-rosengasse-2.jpg', 0, 0.246356696738, 1, 0.19465648855, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(802, 0x267f1df5467311e9a91c408d5c22fa41, 1644934347, 0xb92fb24e467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/e-werk-brauhausstrasse-1.jpg', 'jpg', '61cdb7bef90f13a7136a8a4b25dc905f', '1', 'e-werk-brauhausstrasse-1.jpg', 0.00732421875, 0.0791556728232, 0.99267578125, 0.529683377309, 0x613a313a7b733a323a226465223b613a353a7b733a353a227469746c65223b733a383a225265666572656e7a223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a32323a22452d5765726b20427261756861757373747261c39f65223b733a373a226c6963656e7365223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(804, 0x267f1df5467311e9a91c408d5c22fa41, 1644934343, 0xc09740c7467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/alte-ziegelei-1.jpg', 'jpg', 'a247b7b1e54abc0c5046f6d78607f185', '1', 'alte-ziegelei-1.jpg', 0.01025390625, 0.212609970674, 0.98974609375, 0.558651026393, 0x613a313a7b733a323a226465223b613a353a7b733a353a227469746c65223b733a383a225265666572656e7a223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a31333a22416c7465205a696567656c6569223b733a373a226c6963656e7365223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(805, 0x267f1df5467311e9a91c408d5c22fa41, 1552658147, 0xc416cb81467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/jahnhalle.jpg', 'jpg', '8f7955f5b457654b74a15e88654f8728', '1', 'jahnhalle.jpg', 0, 0.148093841642, 1, 0.646627565982, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(806, 0x267f1df5467311e9a91c408d5c22fa41, 1552658145, 0xc433b88f467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/alte-ziegelei-3.jpg', 'jpg', '40936257485cd57168f9fa455e933d5a', '1', 'alte-ziegelei-3.jpg', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(807, 0x267f1df5467311e9a91c408d5c22fa41, 1552658150, 0xc6eaaf6d467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/rittergut-coelln.jpg', 'jpg', 'f630378402f55ff1df4e8bed31098d01', '1', 'rittergut-coelln.jpg', 0, 0.283724340176, 1, 0.401759530792, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(809, 0x267f1df5467311e9a91c408d5c22fa41, 1553878145, 0xc942253a467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/hamburger-hof.jpg', 'jpg', '3f64cf746174ec835dc2d5670811ffaa', '1', 'hamburger-hof.jpg', 0.00341796875, 0.110520722635, 0.99658203125, 0.672688629118, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(810, 0x267f1df5467311e9a91c408d5c22fa41, 1553878163, 0xcbc4a14c467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/kaserne-bohnitzsch-1.jpg', 'jpg', '6ca91cbb5c7f27795f171a1d122290d4', '1', 'kaserne-bohnitzsch-1.jpg', 0.0078125, 0.183284457478, 0.9921875, 0.609970674487, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(811, 0x267f1df5467311e9a91c408d5c22fa41, 1553878174, 0xccb24364467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/kaserne-bohnitzsch-2.jpg', 'jpg', '8839c2910a3f63f8607f94705aa10c4b', '1', 'kaserne-bohnitzsch-2.jpg', 0, 0.127565982405, 1, 0.681085043988, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(812, 0x267f1df5467311e9a91c408d5c22fa41, 1553878204, 0xce7c80c2467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/landkrankenhaus.jpg', 'jpg', 'a3b13f1be8e11c70c86253fa827f299a', '1', 'landkrankenhaus.jpg', 0.0048828125, 0.280575539568, 0.9951171875, 0.531066056246, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(813, 0x267f1df5467311e9a91c408d5c22fa41, 1552658147, 0xd285349b467611e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/herrenhaus-dresdner-strasse.jpg', 'jpg', 'a0e798cdd651953ae3f129724fcb3d7d', '1', 'herrenhaus-dresdner-strasse.jpg', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a303a22223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(815, 0x86ee99abc64d11e88ff2408d5c22fa41, 1552657625, 0xc96d0cf7472811e9a91c408d5c22fa41, 'file', 'files/odd/img/ODD_Logo.png', 'png', '0dd572b40f1e9c2843715f9d1dcc677e', '1', 'ODD_Logo.png', 0, 0, 0, 0, 0x613a313a7b733a323a226465223b613a343a7b733a353a227469746c65223b733a303a22223b733a333a22616c74223b733a33333a224f4444204c6f676f202d204578706c6f72696e6720436f6e74616f205468656d65223b733a343a226c696e6b223b733a303a22223b733a373a2263617074696f6e223b733a303a22223b7d7d); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(820, 0x5556381bc64d11e88ff2408d5c22fa41, 1553271254, 0x89152b404cbd11e9a91c408d5c22fa41, 'folder', 'files/odd/scss', '', 'af3cb9077c044201ad94991c70c728d1', '1', 'scss', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(821, 0x89152b404cbd11e9a91c408d5c22fa41, 1575380404, 0x89152b384cbd11e9a91c408d5c22fa41, 'file', 'files/odd/scss/_custom_colors.scss', 'scss', 'faa3e283a513251c3af4f09bf6d5d961', '1', '_custom_colors.scss', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(822, 0x89152b404cbd11e9a91c408d5c22fa41, 1553271254, 0x89152b324cbd11e9a91c408d5c22fa41, 'file', 'files/odd/scss/_custom_variables.scss', 'scss', '4791bf84f66d4b442eeaeac9bb8a8c72', '1', '_custom_variables.scss', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(823, 0x89152b404cbd11e9a91c408d5c22fa41, 1575380926, 0x89152b2b4cbd11e9a91c408d5c22fa41, 'file', 'files/odd/scss/custom.scss', 'scss', '9cbb457cbe5c21e7a8a0f3992523afdb', '1', 'custom.scss', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(854, 0x267f1df5467311e9a91c408d5c22fa41, 1555065120, 0x34b541155d0e11e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/IMG_3790_1_HDR_tonemapped.jpg', 'jpg', 'd98ebb0c9aad9dd1bc4be9bfdc739a66', '1', 'IMG_3790_1_HDR_tonemapped.jpg', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(855, 0x267f1df5467311e9a91c408d5c22fa41, 1555065120, 0x34b5410d5d0e11e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/PICT0004_03_8bit.jpg', 'jpg', '6c55203d749a9ba94106930d66f9044b', '1', 'PICT0004_03_8bit.jpg', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(856, 0x267f1df5467311e9a91c408d5c22fa41, 1555065120, 0x34b541065d0e11e9a91c408d5c22fa41, 'file', 'files/odd/img/verlassene-orte-meissen/e-werk-brauhausstrasse-2.jpg', 'jpg', 'e0d8a92393c972e5cd168d5a78dd67b7', '1', 'e-werk-brauhausstrasse-2.jpg', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(857, 0x86ee99abc64d11e88ff2408d5c22fa41, 1555316209, 0xd163d7285f5611e989ece0d55edd9ad9, 'file', 'files/odd/img/favicon.ico', 'ico', '75ab0f0a098e0a63c5a68c9cb577b9e1', '1', 'favicon.ico', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(858, NULL, 1638524413, 0x03978b0f541d11ec8ee0e0d55e59bff3, 'folder', 'files/social-feed', '', '4d2d253fd689642108b33d6deb15f113', '1', 'social-feed', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(859, 0x03978b0f541d11ec8ee0e0d55e59bff3, 1638524413, 0x03978b04541d11ec8ee0e0d55e59bff3, 'folder', 'files/social-feed/70570732', '', 'a6fbae4602a396d3aaa1b982987550d6', '1', '70570732', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(860, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524413, 0x03978afc541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6868857032481538048.jpg', 'jpg', '28d81d1e1217d5fc79781bb9becc742a', '1', '6868857032481538048.jpg', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(861, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524413, 0x03978af5541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6863780628970684416.jpg', 'jpg', '9a269aaa9d7811b160d070621ebb40d3', '1', '6863780628970684416.jpg', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(862, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524414, 0x03978aeb541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6859777035833786368.jpg', 'jpg', '0f88e5d0ea5396e6b111e134321e5033', '1', '6859777035833786368.jpg', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(863, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524414, 0x03978ae4541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6821723322980589568.jpg', 'jpg', '6cc89d2eb80b2e58a96c8a8919f6bc3b', '1', '6821723322980589568.jpg', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(864, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524414, 0x03978adc541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6814107593779269633.jpg', 'jpg', '8ed28675f33d2f3fa6ee96979e532dc5', '1', '6814107593779269633.jpg', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(865, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524415, 0x03978ad4541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6810600668026454016.jpg', 'jpg', '11df1eb0f5b8469080bbaa6a8e4a8841', '1', '6810600668026454016.jpg', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(866, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524415, 0x03978ac8541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6806161831481159680.jpg', 'jpg', 'b4fad794ccfcf56f75617f9614f7c243', '1', '6806161831481159680.jpg', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(867, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524420, 0x03978a95541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6802949577843453952.jpg', 'jpg', '76ea90aba86bbf728e9a407154bbbc11', '1', '6802949577843453952.jpg', 0, 0, 0, 0, NULL); -INSERT INTO `tl_files` (`id`, `pid`, `tstamp`, `uuid`, `type`, `path`, `extension`, `hash`, `found`, `name`, `importantPartX`, `importantPartY`, `importantPartWidth`, `importantPartHeight`, `meta`) VALUES(868, 0x03978b04541d11ec8ee0e0d55e59bff3, 1638524420, 0x08043c64541d11ec8ee0e0d55e59bff3, 'file', 'files/social-feed/70570732/6800429967206359041.jpg', 'jpg', 'ffeafff60a8a39c0ae7f6ebe37e4baa0', '1', '6800429967206359041.jpg', 0, 0, 0, 0, NULL); - -INSERT INTO `tl_form` (`id`, `tstamp`, `title`, `alias`, `jumpTo`, `sendViaEmail`, `recipient`, `subject`, `format`, `skipEmpty`, `storeValues`, `targetTable`, `customTpl`, `method`, `novalidate`, `attributes`, `formID`, `allowTags`, `advancedCss`) VALUES(6, 1539346644, 'Odd / Beispielformular', 'mate-beispielformular', 135, '1', 'info@example.de', 'Formular-Anfrage mate.contao-themes.net', 'raw', '', '', '', 'form_wrapper', 'POST', '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', ''); -INSERT INTO `tl_form` (`id`, `tstamp`, `title`, `alias`, `jumpTo`, `sendViaEmail`, `recipient`, `subject`, `format`, `skipEmpty`, `storeValues`, `targetTable`, `customTpl`, `method`, `novalidate`, `attributes`, `formID`, `allowTags`, `advancedCss`) VALUES(8, 1539346653, 'Odd / Kontaktformular', 'mate-kontaktformular', 135, '1', 'info@example.de', 'Anfrage Kontaktformular bei Mate Theme', 'raw', '', '', '', 'form_wrapper', 'POST', '', 'a:2:{i:0;s:0:\"\";i:1;s:4:\"test\";}', '', '', ''); - -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(22, 6, 128, 1511533531, 'text', 'Name', 'name', NULL, NULL, NULL, '1', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(23, 6, 64, 1511535789, 'text', 'Vorname', 'vorname', NULL, NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(27, 6, 640, 1511533525, 'text', 'E-Mail', 'email', NULL, NULL, NULL, '', 'email', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(28, 6, 768, 1511533391, 'text', 'Telefon', 'telefon', NULL, NULL, NULL, '', 'phone', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(29, 6, 896, 1511533449, 'textarea', 'Ihre Nachricht', 'nachricht', NULL, NULL, NULL, '1', '', '', 0, 0, 'a:2:{i:0;s:1:\"4\";i:1;s:2:\"40\";}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(30, 6, 1024, 1511533458, 'submit', '', '', NULL, NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', 'Absenden', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(31, 6, 876, 1511786014, 'checkbox', 'Checkbox-Menü', 'kontaktart', NULL, NULL, 0x613a333a7b693a303b613a323a7b733a353a2276616c7565223b733a383a226175737761686c31223b733a353a226c6162656c223b733a393a224175737761686c2031223b7d693a313b613a323a7b733a353a2276616c7565223b733a383a226175737761686c32223b733a353a226c6162656c223b733a393a224175737761686c2032223b7d693a323b613a323a7b733a353a2276616c7565223b733a383a226175737761686c33223b733a353a226c6162656c223b733a393a224175737761686c2033223b7d7d, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(32, 6, 864, 1511534002, 'select', 'Wie sind Sie auf uns aufmerksam geworden?', 'wie-gefunden', NULL, NULL, 0x613a363a7b693a303b613a323a7b733a353a2276616c7565223b733a383a22696e7465726e6574223b733a353a226c6162656c223b733a383a22496e7465726e6574223b7d693a313b613a323a7b733a353a2276616c7565223b733a373a227a656974756e67223b733a353a226c6162656c223b733a373a225a656974756e67223b7d693a323b613a323a7b733a353a2276616c7565223b733a31313a22706572736f656e6c696368223b733a353a226c6162656c223b733a32333a2250657273c3b66e6c6963686520456d706665686c756e67223b7d693a333b613a323a7b733a353a2276616c7565223b733a353a22726164696f223b733a353a226c6162656c223b733a353a22526164696f223b7d693a343b613a323a7b733a353a2276616c7565223b733a323a227476223b733a353a226c6162656c223b733a323a225456223b7d693a353b613a323a7b733a353a2276616c7565223b733a393a22736f6e737469676573223b733a353a226c6162656c223b733a393a22536f6e737469676573223b7d7d, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(33, 6, 888, 1511536334, 'radio', 'Radio-Button-Menü', 'radio-button', NULL, NULL, 0x613a343a7b693a303b613a323a7b733a353a2276616c7565223b733a353a227765727431223b733a353a226c6162656c223b733a363a22576572742031223b7d693a313b613a323a7b733a353a2276616c7565223b733a353a227765727432223b733a353a226c6162656c223b733a363a22576572742032223b7d693a323b613a323a7b733a353a2276616c7565223b733a353a227765727433223b733a353a226c6162656c223b733a363a22576572742033223b7d693a333b613a323a7b733a353a2276616c7565223b733a353a227765727434223b733a353a226c6162656c223b733a363a22576572742034223b7d7d, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(34, 6, 892, 1645102642, 'upload', 'Dateiupload', 'dateiupload', NULL, NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '1', NULL, '', '1', '', '', '', 0, 0, 'form_upload_odd', '', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(47, 6, 816, 1511781024, 'text', 'Datumsauswahl', 'datepicker', NULL, NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', 'datepicker', '', '', 0, 0, '', '', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(48, 6, 840, 1511781167, 'text', 'Zeitauswahl', 'timepicker', NULL, NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,xls,ppt', '', NULL, '', '', 'timepicker', '', '', 0, 0, '', '', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(50, 8, 128, 1555069694, 'text', 'Name', 'name', NULL, NULL, NULL, '1', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(52, 8, 384, 1512724283, 'text', 'E-Mail', 'email', NULL, NULL, NULL, '1', 'email', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(53, 8, 512, 1512724310, 'textarea', 'Ihre Nachricht', 'nachricht', NULL, NULL, NULL, '1', '', '', 0, 0, 'a:2:{i:0;s:1:\"4\";i:1;s:2:\"40\";}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(54, 8, 640, 1512724321, 'submit', '', '', NULL, NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', '', NULL, '', '', '', '', '', 0, 0, '', 'Absenden', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(57, 6, 960, 1525257445, 'rocksolid_antispam', 'Antispam Sicherheitsfrage', '', NULL, NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(58, 8, 576, 1555069708, 'captcha', '', '', NULL, NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', ''); -INSERT INTO `tl_form_field` (`id`, `pid`, `sorting`, `tstamp`, `type`, `label`, `name`, `text`, `html`, `options`, `mandatory`, `rgxp`, `placeholder`, `minlength`, `maxlength`, `size`, `multiple`, `mSize`, `extensions`, `storeFile`, `uploadFolder`, `useHomeDir`, `doNotOverwrite`, `class`, `value`, `accesskey`, `tabindex`, `fSize`, `customTpl`, `slabel`, `imageSubmit`, `singleSRC`, `invisible`, `maxval`, `minval`, `step`) VALUES(60, 8, 768, 1555069889, 'explanation', '', '', '

[nbsp]

\n

* Pflichtfelder

', NULL, NULL, '', '', '', 0, 0, 'a:2:{i:0;i:4;i:1;i:40;}', '', 0, 'jpg,jpeg,gif,png,pdf,doc,docx,xls,xlsx,ppt,pptx', '', NULL, '', '', '', '', '', 0, 0, '', '', '', NULL, '', '0', '0', ''); - -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(16, 17, 1555080617, 'Headerbild', '', '', '', 1920, 400, 'crop', 0, '1', '', ''); -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(17, 17, 1560847552, 'Headerbild mit Schräge', '', '1x, 1.5x, 2x', '', 1920, 650, 'crop', 0, '1', '', ''); -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(18, 17, 1552657088, 'Slider', '', '', '', 1920, 750, 'crop', 0, '1', '', ''); -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(19, 17, 1525783920, 'Teaserboxen', '', '1x, 1.5x, 2x', '', 350, 200, 'crop', 0, '1', '', ''); -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(22, 17, 1528372682, 'Team', '', '1x, 1.5x, 2x', '', 350, 250, 'crop', 100, '1', '', ''); -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(23, 17, 1539099645, 'News / Listenansicht', '', '', '', 540, 350, 'crop', 100, '1', '', ''); -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(24, 17, 1560847649, 'Slider mit Schräge', '', '', '', 1920, 900, 'crop', 0, '1', '', ''); -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(25, 17, 1552657717, 'Logo', '', '1x, 1.5x, 2x', '', NULL, 90, 'box', NULL, '1', '', ''); -INSERT INTO `tl_image_size` (`id`, `pid`, `tstamp`, `name`, `cssClass`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `skipIfDimensionsMatch`, `formats`, `lazyLoading`) VALUES(26, 17, 1572884258, 'Maklermodul / Listenansicht', '', '', '', 357, 200, 'crop', 0, '', '', ''); - -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(6, 16, 128, 1555080029, '(max-width: 991px)', '1x, 1.5x, 2x', '', 991, 350, 'crop', NULL, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(7, 17, 128, 1555080183, '(max-width: 767px)', '1x, 1.5x, 2x', '', 767, 450, 'crop', NULL, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(8, 18, 128, 1525699627, '(max-width:767px)', '1x, 1.5x, 2x', '', 767, 500, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(9, 18, 256, 1525787411, '(max-width:1024px)', '1x, 1.5x, 2x', '', 1024, 500, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(10, 18, 384, 1525856669, '(max-width:1300px)', '1x, 1.5x, 2x', '', 1300, 550, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(13, 22, 128, 1528372677, '(max-width:1199px)', '1x, 1.5x, 2x', '', 300, 200, 'crop', 100, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(14, 22, 64, 1528372754, '(max-width:991px)', '1x, 1.5x, 2x', '', 420, 300, 'crop', 100, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(15, 22, 32, 1528372807, '(max-width:767px)', '1x, 1.5x, 2x', '', 510, 350, 'crop', 100, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(16, 22, 16, 1528372855, '(max-width:400px)', '1x, 1.5x, 2x', '', 370, 255, 'crop', 100, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(20, 24, 128, 1552659511, '(max-width: 1450px)', '1x, 1.5x, 2x', '', 1455, 800, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(21, 24, 64, 1552659506, '(max-width: 1150px)', '1x, 1.5x, 2x', '', 1150, 800, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(22, 24, 32, 1552659500, '(max-width:992px)', '1x, 1.5x, 2x', '', 992, 800, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(23, 24, 16, 1552660075, '(max-width: 767px)', '1x, 1.5x, 2x', '', 767, 500, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(25, 19, 128, 1552663259, '(max-width: 767px)', '1x, 1.5x, 2x', '', 510, 300, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(27, 17, 256, 1555079599, '(max-width: 991px)', '1x, 1.5x, 2x', '', 991, 500, 'crop', NULL, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(28, 17, 64, 1555079881, '(max-width: 450px)', '1x, 1.5x, 2x', '', 450, 400, 'crop', NULL, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(29, 16, 64, 1555080549, '(max-width: 450px)', '1x, 1.5x, 2x', '', 450, 250, 'crop', NULL, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(30, 16, 256, 1555080674, '(max-width: 1200px)', '1x, 1.5x, 2x', '', 1200, 350, 'crop', NULL, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(31, 24, 8, 1560847732, '(max-width: 450px)', '1x, 1.5x, 2x', '', 450, 295, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(32, 18, 64, 1560847802, '(max-width: 450px)', '1x, 1.5x, 2x', '', 450, 295, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(33, 19, 64, 1560847852, '(max-width: 450px)', '1x, 1.5x, 2x', '', 380, 225, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(34, 26, 128, 1572884653, '(max-width:991px)', '', '', 417, 233, 'crop', 0, ''); -INSERT INTO `tl_image_size_item` (`id`, `pid`, `sorting`, `tstamp`, `media`, `densities`, `sizes`, `width`, `height`, `resizeMode`, `zoom`, `invisible`) VALUES(35, 26, 64, 1572884651, '(max-width:767px)', '', '', 511, 286, 'crop', 0, ''); - -INSERT INTO `tl_layout` (`id`, `pid`, `tstamp`, `name`, `rows`, `headerHeight`, `footerHeight`, `cols`, `widthLeft`, `widthRight`, `sections`, `framework`, `stylesheet`, `external`, `loadingOrder`, `combineScripts`, `modules`, `template`, `viewport`, `titleTag`, `cssClass`, `onload`, `head`, `addJQuery`, `jquery`, `addMooTools`, `mootools`, `analytics`, `scripts`, `script`, `static`, `width`, `align`, `externalJs`, `minifyMarkup`, `defaultImageDensities`, `lightboxSize`, `orderExtJs`, `mooSource`, `jSource`, `webfonts`, `orderExt`) VALUES(55, 17, 1643298800, 'Einspaltiges Layout / Schräger Header', '3rw', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '1cl', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '', 0x613a313a7b693a303b613a343a7b733a353a227469746c65223b733a303a22223b733a323a226964223b733a303a22223b733a383a2274656d706c617465223b733a31333a22626c6f636b5f73656374696f6e223b733a383a22706f736974696f6e223b733a333a22746f70223b7d7d, '', NULL, NULL, 'external_first', '1', 0x613a363a7b693a303b613a333a7b733a333a226d6f64223b733a333a22333832223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a313b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a323b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a343a226d61696e223b733a363a22656e61626c65223b733a313a2231223b7d693a333b613a333a7b733a333a226d6f64223b733a333a22333932223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a343b613a333a7b733a333a226d6f64223b733a333a22333732223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a353b613a333a7b733a333a226d6f64223b733a333a22333731223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d7d, 'fe_page_odd', 'width=device-width, initial-scale=1, shrink-to-fit=no', '', '', '', NULL, '1', 'a:2:{i:0;s:11:\"j_accordion\";i:1;s:10:\"j_colorbox\";}', '', NULL, NULL, 'a:1:{i:0;s:9:\"js_slider\";}', NULL, '', '', 'center', NULL, '1', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', NULL, 'moo_local', '', '', NULL); -INSERT INTO `tl_layout` (`id`, `pid`, `tstamp`, `name`, `rows`, `headerHeight`, `footerHeight`, `cols`, `widthLeft`, `widthRight`, `sections`, `framework`, `stylesheet`, `external`, `loadingOrder`, `combineScripts`, `modules`, `template`, `viewport`, `titleTag`, `cssClass`, `onload`, `head`, `addJQuery`, `jquery`, `addMooTools`, `mootools`, `analytics`, `scripts`, `script`, `static`, `width`, `align`, `externalJs`, `minifyMarkup`, `defaultImageDensities`, `lightboxSize`, `orderExtJs`, `mooSource`, `jSource`, `webfonts`, `orderExt`) VALUES(56, 17, 1644832868, 'Zweispaltiges Layout / Linke Spalte / Schräger Header', '3rw', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '2cll', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '', 0x613a313a7b693a303b613a343a7b733a353a227469746c65223b733a303a22223b733a323a226964223b733a303a22223b733a383a2274656d706c617465223b733a31333a22626c6f636b5f73656374696f6e223b733a383a22706f736974696f6e223b733a333a22746f70223b7d7d, '', NULL, NULL, 'external_first', '1', 0x613a383a7b693a303b613a333a7b733a333a226d6f64223b733a333a22333832223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a313b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a323b613a333a7b733a333a226d6f64223b733a333a22333834223b733a333a22636f6c223b733a343a226c656674223b733a363a22656e61626c65223b733a313a2231223b7d693a333b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a343a226c656674223b733a363a22656e61626c65223b733a313a2231223b7d693a343b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a343a226d61696e223b733a363a22656e61626c65223b733a313a2231223b7d693a353b613a333a7b733a333a226d6f64223b733a333a22333932223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a363b613a333a7b733a333a226d6f64223b733a333a22333732223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a373b613a333a7b733a333a226d6f64223b733a333a22333731223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d7d, 'fe_page_odd_left', 'width=device-width, initial-scale=1, shrink-to-fit=no', '', 'left-col-layout', '', NULL, '1', 'a:2:{i:0;s:11:\"j_accordion\";i:1;s:10:\"j_colorbox\";}', '', NULL, NULL, 'a:1:{i:0;s:9:\"js_slider\";}', NULL, '', '', 'center', NULL, '1', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', NULL, 'moo_local', '', '', NULL); -INSERT INTO `tl_layout` (`id`, `pid`, `tstamp`, `name`, `rows`, `headerHeight`, `footerHeight`, `cols`, `widthLeft`, `widthRight`, `sections`, `framework`, `stylesheet`, `external`, `loadingOrder`, `combineScripts`, `modules`, `template`, `viewport`, `titleTag`, `cssClass`, `onload`, `head`, `addJQuery`, `jquery`, `addMooTools`, `mootools`, `analytics`, `scripts`, `script`, `static`, `width`, `align`, `externalJs`, `minifyMarkup`, `defaultImageDensities`, `lightboxSize`, `orderExtJs`, `mooSource`, `jSource`, `webfonts`, `orderExt`) VALUES(57, 17, 1644833953, 'Zweispaltiges Layout / Rechte Spalte / Schräger Header', '3rw', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '2clr', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 0x613a313a7b693a303b613a343a7b733a353a227469746c65223b733a303a22223b733a323a226964223b733a303a22223b733a383a2274656d706c617465223b733a31333a22626c6f636b5f73656374696f6e223b733a383a22706f736974696f6e223b733a333a22746f70223b7d7d, '', NULL, NULL, 'external_first', '1', 0x613a383a7b693a303b613a333a7b733a333a226d6f64223b733a333a22333832223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a313b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a323b613a333a7b733a333a226d6f64223b733a333a22333834223b733a333a22636f6c223b733a353a227269676874223b733a363a22656e61626c65223b733a313a2231223b7d693a333b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a353a227269676874223b733a363a22656e61626c65223b733a313a2231223b7d693a343b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a343a226d61696e223b733a363a22656e61626c65223b733a313a2231223b7d693a353b613a333a7b733a333a226d6f64223b733a333a22333932223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a363b613a333a7b733a333a226d6f64223b733a333a22333732223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a373b613a333a7b733a333a226d6f64223b733a333a22333731223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d7d, 'fe_page_odd_right', 'width=device-width, initial-scale=1, shrink-to-fit=no', '', 'left-col-layout', '', NULL, '1', 'a:2:{i:0;s:11:\"j_accordion\";i:1;s:10:\"j_colorbox\";}', '', NULL, NULL, 'a:1:{i:0;s:9:\"js_slider\";}', NULL, '', '', 'center', NULL, '1', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', NULL, 'moo_local', '', '', NULL); -INSERT INTO `tl_layout` (`id`, `pid`, `tstamp`, `name`, `rows`, `headerHeight`, `footerHeight`, `cols`, `widthLeft`, `widthRight`, `sections`, `framework`, `stylesheet`, `external`, `loadingOrder`, `combineScripts`, `modules`, `template`, `viewport`, `titleTag`, `cssClass`, `onload`, `head`, `addJQuery`, `jquery`, `addMooTools`, `mootools`, `analytics`, `scripts`, `script`, `static`, `width`, `align`, `externalJs`, `minifyMarkup`, `defaultImageDensities`, `lightboxSize`, `orderExtJs`, `mooSource`, `jSource`, `webfonts`, `orderExt`) VALUES(58, 17, 1644834189, 'Dreispaltiges Layout / Linke und rechte Spalte / Schräger Header', '3rw', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '3cl', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 0x613a313a7b693a303b613a343a7b733a353a227469746c65223b733a303a22223b733a323a226964223b733a303a22223b733a383a2274656d706c617465223b733a31333a22626c6f636b5f73656374696f6e223b733a383a22706f736974696f6e223b733a333a22746f70223b7d7d, '', NULL, NULL, 'external_first', '1', 0x613a393a7b693a303b613a333a7b733a333a226d6f64223b733a333a22333832223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a313b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a323b613a333a7b733a333a226d6f64223b733a333a22333834223b733a333a22636f6c223b733a343a226c656674223b733a363a22656e61626c65223b733a313a2231223b7d693a333b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a343a226c656674223b733a363a22656e61626c65223b733a313a2231223b7d693a343b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a353a227269676874223b733a363a22656e61626c65223b733a313a2231223b7d693a353b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a343a226d61696e223b733a363a22656e61626c65223b733a313a2231223b7d693a363b613a333a7b733a333a226d6f64223b733a333a22333932223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a373b613a333a7b733a333a226d6f64223b733a333a22333732223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a383b613a333a7b733a333a226d6f64223b733a333a22333731223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d7d, 'fe_page_odd_three_columns', 'width=device-width, initial-scale=1, shrink-to-fit=no', '', 'left-right-col-layout', '', NULL, '1', 'a:2:{i:0;s:11:\"j_accordion\";i:1;s:10:\"j_colorbox\";}', '', NULL, NULL, 'a:1:{i:0;s:9:\"js_slider\";}', NULL, '', '', 'center', NULL, '1', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', NULL, 'moo_local', '', '', NULL); -INSERT INTO `tl_layout` (`id`, `pid`, `tstamp`, `name`, `rows`, `headerHeight`, `footerHeight`, `cols`, `widthLeft`, `widthRight`, `sections`, `framework`, `stylesheet`, `external`, `loadingOrder`, `combineScripts`, `modules`, `template`, `viewport`, `titleTag`, `cssClass`, `onload`, `head`, `addJQuery`, `jquery`, `addMooTools`, `mootools`, `analytics`, `scripts`, `script`, `static`, `width`, `align`, `externalJs`, `minifyMarkup`, `defaultImageDensities`, `lightboxSize`, `orderExtJs`, `mooSource`, `jSource`, `webfonts`, `orderExt`) VALUES(59, 17, 1643298853, 'Einspaltiges Layout / Gerader Header', '3rw', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '1cl', 'a:2:{s:4:\"unit\";s:0:\"\";s:5:\"value\";s:0:\"\";}', '', 0x613a313a7b693a303b613a343a7b733a353a227469746c65223b733a303a22223b733a323a226964223b733a303a22223b733a383a2274656d706c617465223b733a31333a22626c6f636b5f73656374696f6e223b733a383a22706f736974696f6e223b733a333a22746f70223b7d7d, '', NULL, NULL, 'external_first', '1', 0x613a363a7b693a303b613a333a7b733a333a226d6f64223b733a333a22343137223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a313b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a363a22686561646572223b733a363a22656e61626c65223b733a313a2231223b7d693a323b613a333a7b733a333a226d6f64223b733a313a2230223b733a333a22636f6c223b733a343a226d61696e223b733a363a22656e61626c65223b733a313a2231223b7d693a333b613a333a7b733a333a226d6f64223b733a333a22333932223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a343b613a333a7b733a333a226d6f64223b733a333a22333732223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d693a353b613a333a7b733a333a226d6f64223b733a333a22333731223b733a333a22636f6c223b733a363a22666f6f746572223b733a363a22656e61626c65223b733a313a2231223b7d7d, 'fe_page_odd', 'width=device-width, initial-scale=1, shrink-to-fit=no', '', '', '', NULL, '1', 'a:2:{i:0;s:11:\"j_accordion\";i:1;s:10:\"j_colorbox\";}', '', NULL, NULL, 'a:1:{i:0;s:9:\"js_slider\";}', NULL, '', '', 'center', NULL, '1', '', 'a:3:{i:0;s:0:\"\";i:1;s:0:\"\";i:2;s:0:\"\";}', NULL, 'moo_local', '', '', NULL); - -INSERT INTO `tl_member` (`id`, `tstamp`, `firstname`, `lastname`, `dateOfBirth`, `gender`, `company`, `street`, `postal`, `city`, `state`, `country`, `phone`, `mobile`, `fax`, `email`, `website`, `language`, `groups`, `login`, `username`, `password`, `assignDir`, `homeDir`, `disable`, `start`, `stop`, `dateAdded`, `lastLogin`, `currentLogin`, `locked`, `session`, `useTwoFactor`, `secret`, `trustedTokenVersion`, `backupCodes`, `loginAttempts`) VALUES(1, 1259754224, 'John', 'Smith', '238201200', 'male', '', '', '', '', '', '', '', '', '', 'j.smith@example.com', '', 'en', 0x613a313a7b693a303b733a313a2232223b7d, '1', 'j.smith', '$2y$10$r//Ke.SkjhB5W8PLFKMmweY5Bv2d4CbSm3f3sH8Q4UMp8QknQPe0y', '', 0x00000000000000000000000000000000, '', '', '', 1259754224, 1539337506, 1539337760, 0, 0x613a363a7b733a373a2272656665726572223b613a323a7b733a343a226c617374223b733a31373a226d656d626572732d617265612e68746d6c223b733a373a2263757272656e74223b733a393a22757365722e68746d6c223b7d733a31303a22636170746368615f3230223b613a333a7b733a333a2273756d223b693a383b733a333a226b6579223b733a33333a22636562373937343262653137306630303832363537373732373734376261306437223b733a343a2274696d65223b693a313439373134373934303b7d733a31353a22636170746368615f63617074636861223b613a333a7b733a333a2273756d223b693a31313b733a333a226b6579223b733a33333a22633431623637396665326338366161333063316130316230613034336234366237223b733a343a2274696d65223b693a313439373134373934303b7d733a32313a22636170746368615f6c6f73745f70617373776f7264223b613a333a7b733a333a2273756d223b693a363b733a333a226b6579223b733a33333a22636239353765633334376531353338336466313963636562623232346465386133223b733a343a2274696d65223b693a313531313533303338333b7d733a32313a22726f636b736f6c69645f616e74697370616d5f3335223b613a333a7b733a353a226e616d6573223b613a333a7b693a303b733a373a22656d61696c2d32223b693a313b733a333a2275726c223b693a323b733a32323a225f4b704b4b622d4c456d49616f463971443064387851223b7d733a363a2276616c756573223b613a333a7b693a303b733a303a22223b693a313b733a303a22223b693a323b733a32323a2251336a376a50586f6b6b5434466e30686a455a796651223b7d733a343a2274696d65223b693a313532343930393935363b7d733a32313a22726f636b736f6c69645f616e74697370616d5f3535223b613a333a7b733a353a226e616d6573223b613a333a7b693a303b733a373a22656d61696c2d32223b693a313b733a333a2275726c223b693a323b733a32323a22525a584d38423675684b6f436575556d314c45437167223b7d733a363a2276616c756573223b613a333a7b693a303b733a303a22223b693a313b733a303a22223b693a323b733a32323a222d65696d7a627975674d4d487647366635454f4f6d51223b7d733a343a2274696d65223b693a313532343931303738353b7d7d, '', NULL, 0, NULL, 0); -INSERT INTO `tl_member` (`id`, `tstamp`, `firstname`, `lastname`, `dateOfBirth`, `gender`, `company`, `street`, `postal`, `city`, `state`, `country`, `phone`, `mobile`, `fax`, `email`, `website`, `language`, `groups`, `login`, `username`, `password`, `assignDir`, `homeDir`, `disable`, `start`, `stop`, `dateAdded`, `lastLogin`, `currentLogin`, `locked`, `session`, `useTwoFactor`, `secret`, `trustedTokenVersion`, `backupCodes`, `loginAttempts`) VALUES(2, 1259754224, 'Donna', 'Evans', '191635200', 'female', '', '', '', '', '', '', '', '', '', 'd.evans@example.com', '', 'en', 0x613a313a7b693a303b733a313a2231223b7d, '1', 'd.evans', '$2y$10$3.ghpkaeW/ATUeSrhA8sgedbs4AdboKczBPV7IqyweXS6eCQ749pS', '', 0x00000000000000000000000000000000, '', '', '', 1259754224, 1516703824, 1553272691, 0, 0x613a333a7b733a373a2272656665726572223b613a323a7b733a343a226c617374223b733a33343a226d792d6163636f756e742e68746d6c3f7468656d653d63746f2d626f6f7374726170223b733a373a2263757272656e74223b733a33303a226c6f676f75742e68746d6c3f7468656d653d63746f2d626f6f7374726170223b7d733a31303a22636170746368615f3230223b613a333a7b733a333a2273756d223b693a31313b733a333a226b6579223b733a33333a22633036623236313465326335613031643137636532333039656434383562336533223b733a343a2274696d65223b693a313339303134323031313b7d733a32313a22636170746368615f6c6f73745f70617373776f7264223b613a333a7b733a333a2273756d223b693a363b733a333a226b6579223b733a33333a22633634346635353637323565353066653262636138316537653035613731373139223b733a343a2274696d65223b693a313430313236303637373b7d7d, '', NULL, 0, NULL, 0); -INSERT INTO `tl_member` (`id`, `tstamp`, `firstname`, `lastname`, `dateOfBirth`, `gender`, `company`, `street`, `postal`, `city`, `state`, `country`, `phone`, `mobile`, `fax`, `email`, `website`, `language`, `groups`, `login`, `username`, `password`, `assignDir`, `homeDir`, `disable`, `start`, `stop`, `dateAdded`, `lastLogin`, `currentLogin`, `locked`, `session`, `useTwoFactor`, `secret`, `trustedTokenVersion`, `backupCodes`, `loginAttempts`) VALUES(3, 1259754224, 'John', 'Doe', '0', '', '', '', '', '', '', '', '', '', '', 'j.doe@example.com', '', 'en', 0x613a323a7b693a303b733a313a2232223b693a313b733a313a2231223b7d, '1', 'j.doe', '7a86a8cf9d7510cc4661b217133f2eed37981b75', '', 0x00000000000000000000000000000000, '', '', '', 1259754224, 0, 0, 0, 0x613a313a7b733a373a2272656665726572223b613a323a7b733a343a226c617374223b733a31353a222f686973746f72792d312e68746d6c223b733a373a2263757272656e74223b733a313a222f223b7d7d, '', NULL, 0, NULL, 0); - -INSERT INTO `tl_member_group` (`id`, `tstamp`, `name`, `redirect`, `jumpTo`, `disable`, `start`, `stop`) VALUES(1, 1172600419, 'Violin Students', '1', 6, '', '', ''); -INSERT INTO `tl_member_group` (`id`, `tstamp`, `name`, `redirect`, `jumpTo`, `disable`, `start`, `stop`) VALUES(2, 1172600394, 'Piano Students', '1', 7, '', '', ''); -INSERT INTO `tl_member_group` (`id`, `tstamp`, `name`, `redirect`, `jumpTo`, `disable`, `start`, `stop`) VALUES(3, 1367401146, 'general Members', '1', 67, '', '', ''); - -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(371, 17, 1523542648, 'Footer / Copyright', 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', 'html', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:0:{}', '', '', NULL, NULL, '
\n
\n {{theme::content::ODD02/05}}\n
\n
', 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', '', '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(372, 17, 1637747701, 'Footer / Main', 'a:2:{s:5:\"value\";s:0:\"\";s:4:\"unit\";s:2:\"h2\";}', 'html', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:0:{}', '', '', NULL, NULL, '\n', 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', '', '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(373, 17, 1538491237, 'Footer / Navigation', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'customnav', 0, 0, '', '', '', 0, 'nav_default', '', 0x613a353a7b693a303b693a39323b693a313b693a3131383b693a323b693a3130313b693a333b693a3133343b693a343b693a3133393b7d, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:0:{}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(375, 17, 1528378451, 'Kontaktformular', 'a:2:{s:4:\"unit\";s:2:\"h3\";s:5:\"value\";s:12:\"Ihre Anfrage\";}', 'form', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 6, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:0:{}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(382, 17, 1644931859, 'Navigationsleiste mit Schräge', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'navigation', 0, 0, '', '', '', 0, 'nav_default_odd', 'mod_navigation_odd_sloping', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:0:{}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(383, 17, 1538393056, 'Sitemap', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'sitemap', 0, 0, '', '', '', 0, 'nav_makler_sitemap', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:0:{}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(384, 17, 1538494168, 'Unternavigation', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'navigation', 1, 3, '', '', '', 0, 'nav_default', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:0:{}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:6:\"subnav\";}', '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(401, 17, 1539334988, 'Module / User / Automatischer Logout', '', 'logout', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(402, 17, 1539334988, 'Module / User / Konto schließen', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:16:\"Konto schließen\";}', 'closeAccount', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', 'close_deactivate', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(403, 17, 1539335128, 'Module / User / Login-Formular', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:14:\"Login-Formular\";}', 'login', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 130, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(404, 17, 1539334988, 'Module / User / Passwort ändern', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:16:\"Passwort ändern\";}', 'changePassword', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(405, 17, 1539334988, 'Module / User / Passwort vergessen', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:18:\"Passwort vergessen\";}', 'lostPassword', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, 'Sie haben ein neues Passwort für ##domain## angefordert.\n\nBitte klicken Sie ##link## um das neue Passwort festzulegen. Wenn Sie diese E-Mail nicht angefordert haben, kontaktieren Sie bitte den Administrator der Webseite.', '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(406, 17, 1644936081, 'Module / User / Personendaten', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Personendaten\";}', 'personalData', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', 0x613a32303a7b693a303b733a393a2266697273746e616d65223b693a313b733a383a226c6173746e616d65223b693a323b733a31313a22646174654f664269727468223b693a333b733a363a2267656e646572223b693a343b733a373a22636f6d70616e79223b693a353b733a363a22737472656574223b693a363b733a363a22706f7374616c223b693a373b733a343a2263697479223b693a383b733a353a227374617465223b693a393b733a373a22636f756e747279223b693a31303b733a353a2270686f6e65223b693a31313b733a363a226d6f62696c65223b693a31323b733a333a22666178223b693a31333b733a353a22656d61696c223b693a31343b733a373a2277656273697465223b693a31353b733a383a226c616e6775616765223b693a31363b733a363a2267726f757073223b693a31373b733a383a22757365726e616d65223b693a31383b733a383a2270617373776f7264223b693a31393b733a31303a226e6577736c6574746572223b7d, 'member_grouped', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(407, 17, 1644936092, 'Module / User / Registrierung', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:13:\"Registrierung\";}', 'registration', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', 0x613a32303a7b693a303b733a393a2266697273746e616d65223b693a313b733a383a226c6173746e616d65223b693a323b733a31313a22646174654f664269727468223b693a333b733a363a2267656e646572223b693a343b733a373a22636f6d70616e79223b693a353b733a363a22737472656574223b693a363b733a363a22706f7374616c223b693a373b733a343a2263697479223b693a383b733a353a227374617465223b693a393b733a373a22636f756e747279223b693a31303b733a353a2270686f6e65223b693a31313b733a363a226d6f62696c65223b693a31323b733a333a22666178223b693a31333b733a353a22656d61696c223b693a31343b733a373a2277656273697465223b693a31353b733a383a226c616e6775616765223b693a31363b733a363a2267726f757073223b693a31373b733a383a22757365726e616d65223b693a31383b733a383a2270617373776f7264223b693a31393b733a31303a226e6577736c6574746572223b7d, 'member_grouped', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '1', '', '', '', NULL, '1', 0, 'Vielen Dank für Ihre Registrierung auf ##domain##.\n\nBitte klicken Sie ##link## um Ihre Registrierung abzuschließen und Ihr Konto zu aktivieren. Wenn Sie keinen Zugang angefordert haben, ignorieren Sie bitte diese E-Mail.', NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(415, 17, 1539347848, 'Module / Suchmaschine', 'a:2:{s:4:\"unit\";s:2:\"h1\";s:5:\"value\";s:0:\"\";}', 'search', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', 'a:2:{i:0;s:2:\"48\";i:1;s:4:\"1000\";}', 0, 0, 'advanced', 'search_default', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(417, 17, 1644831836, 'Navigationsleiste ohne Schräge', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:0:\"\";}', 'navigation', 0, 0, '', '', '', 0, 'nav_default_odd', 'mod_navigation_odd', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', 'a:0:{}', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', NULL, '', '', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(418, 17, 1560846305, 'Modaler Dialog / Text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Überschrift\";}', 'ct_modal', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

', '', 'Modaler Dialog mit Text', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(419, 17, 1560846342, 'Modaler Dialog / Text / vertikal zentriert', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Überschrift\";}', 'ct_modal', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'modal-dialog-centered', '', '

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

', '', 'Modaler Dialog mit Text, vertikal zentriert', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(420, 17, 1560846329, 'Modaler Dialog / Text / langer Text', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Überschrift\";}', 'ct_modal', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', '', '', '

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.+Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.+Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

\n

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

', '', 'Modaler Dialog mit Text, mit Scrolling', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(421, 17, 1560846373, 'Modaler Dialog / Formular', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Überschrift\";}', 'ct_modal', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'modal-dialog-centered modal-lg', '', '

{{insert_form::8}}

', '', 'Modaler Dialog mit Formular', NULL); -INSERT INTO `tl_module` (`id`, `pid`, `tstamp`, `name`, `headline`, `type`, `levelOffset`, `showLevel`, `hardLimit`, `showProtected`, `defineRoot`, `rootPage`, `navigationTpl`, `customTpl`, `pages`, `showHidden`, `customLabel`, `autologin`, `jumpTo`, `redirectBack`, `editable`, `memberTpl`, `form`, `queryType`, `fuzzy`, `contextLength`, `minKeywordLength`, `perPage`, `searchType`, `searchTpl`, `inColumn`, `skipFirst`, `loadFirst`, `singleSRC`, `url`, `imgSize`, `useCaption`, `fullsize`, `multiSRC`, `orderSRC`, `html`, `rss_cache`, `rss_feed`, `rss_template`, `numberOfItems`, `disableCaptcha`, `reg_groups`, `reg_allowLogin`, `reg_skipName`, `reg_close`, `reg_assignDir`, `reg_homeDir`, `reg_activate`, `reg_jumpTo`, `reg_text`, `reg_password`, `protected`, `groups`, `guests`, `cssID`, `modal_class`, `modal_customTpl`, `modal_text`, `modal_linkClass`, `modal_linkText`, `orderPages`) VALUES(422, 17, 1560846353, 'Modaler Dialog / Text / vertikal zentriert und breiter', 'a:2:{s:4:\"unit\";s:2:\"h2\";s:5:\"value\";s:12:\"Überschrift\";}', 'ct_modal', 0, 0, '', '', '', 0, '', '', NULL, '', '', '', 0, '', NULL, '', 0, 'and', '', '48', 4, 0, 'simple', '', 'main', 0, '', NULL, '', '', '', '', NULL, NULL, NULL, 3600, NULL, 'rss_default', 3, '', NULL, '', '', '', '', NULL, '', 0, NULL, NULL, '', NULL, '', 'a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}', 'modal-dialog-centered modal-lg', '', '

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus.

', '', 'Modaler Dialog mit Text, vertikal zentriert und breiter', NULL); - -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(90, 0, 384, 1644931274, 'odd - contao theme', 'odd', 'root', 'odd - contao theme', 'de', '', NULL, 'permanent', 0, '', '', '', '', '', '', '1', '', 'd.m.Y', 'H:i', 'd.m.Y H:i', '1', '', '', NULL, '1', 55, 0, '', 604800, 604800, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', '', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(91, 90, 128, 1540219874, 'Start', 'index', 'regular', 'Odd Theme Demo', '', 'index,follow', 'Auf dieser Seite finden Sie Demo-Inhalte des Odd Themes für das Content-Management-System Contao.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', 'map_default', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(92, 90, 192, 1645107245, 'Module', 'module', 'forward', '', '', 'index,follow', NULL, 'permanent', 129, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 56, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(101, 90, 528, 1555059486, 'Elemente', 'elemente', 'forward', '', '', 'index,follow', NULL, 'permanent', 113, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 56, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', 'theme-inspector', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(105, 90, 896, 1540219814, 'ODD Elements', '', 'folder', '', '', '', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(106, 105, 128, 1538489256, '01 / Kopfzeile', '01-kopfzeile', 'regular', '', '', 'index,follow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(107, 105, 256, 1538489266, '02 / Fußzeile', '02-fußzeile', 'regular', '', '', 'index,follow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(113, 101, 128, 1553272043, 'Textelemente', 'inhaltselemente/textelemente', 'regular', 'Textelemente - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie verschiedene Beispiele wie Textelemente eingebunden werden können.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(114, 101, 256, 1553272043, 'Akkordion', 'inhaltselemente/akkordion', 'regular', 'Akkordion - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel wie ein Akkordion-Element eingebunden werden kann.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(115, 101, 384, 1553272043, 'Content Slider', 'inhaltselemente/content-slider', 'regular', 'Content Slider - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie verschiedene Beispiele wie Content-Slider eingebunden werden können.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 55, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(116, 101, 512, 1553272043, 'Media-Elemente', 'inhaltselemente/media-elemente', 'regular', 'Media-Elemente - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie verschiedene Beispiele wie Media-Elemente, wie z. B. Bildergalerien oder Videos eingebunden werden können.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(118, 90, 352, 1555062182, 'Layouts', 'layouts', 'forward', '', '', 'index,follow', NULL, 'permanent', 161, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(120, 159, 128, 1555059417, 'Layout mit linker Spalte', 'layouts/layout-mit-linker-spalte', 'regular', 'Layout mit linker Spalte - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel einer Seite mit einer linken Spalte.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 56, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(121, 159, 256, 1555059417, 'Layout mit rechter Spalte', 'layouts/layout-mit-rechter-spalte', 'regular', 'Layout mit rechter Spalte - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel einer Seite mit einer rechten Spalte.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 57, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(122, 118, 96, 1555059495, 'Dreispaltiges Layout', 'layouts/dreispaltiges-layout', 'regular', 'Dreispaltiges Layout', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel einer Seite mit einer linken und rechten Spalte.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 58, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(124, 118, 32, 1555059457, 'Einspaltiges Layout', 'layouts/einspaltiges-layout', 'regular', 'Einspaltiges Layout - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel einer Seite mit nur einer Spalte.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 55, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(127, 101, 576, 1553870717, 'Weitere Theme-Elemente', 'theme-elemente', 'regular', 'Theme-Elemente', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Themes für das Content-Management-System Contao finden Sie verschiedene Beispiele wie weitereTheme Elemente eingebunden werden können.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(128, 101, 544, 1553272043, 'Download-Elemente', 'style-guide/download-elemente', 'regular', 'Download-Elemente - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie verschiedene Beispiele wie Download-Elemente eingebunden werden können.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(129, 92, 384, 1553272043, 'Navigation', 'module/navigation', 'regular', 'Navigation - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie die verschiedenen Navigationstypen eingebunden werden können.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(130, 92, 512, 1553272043, 'User', 'module/user', 'regular', 'User - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie User-Module (z. B. Login- und Registrierung) eingebunden werden können.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(133, 92, 896, 1553272043, 'Formulare', 'module/formulare', 'regular', 'Formulare - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie Formulare eingebunden werden kann.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(134, 90, 704, 1553272043, 'Impressum', 'impressum', 'regular', 'Impressum - Mate Theme', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(135, 133, 128, 1574341960, 'Formular-Bestätigung', 'module/anwendungen/formular-bestaetigung', 'regular', 'Ihre Anfrage wurde abgesendet', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 55, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '1', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(138, 92, 1024, 1553272043, 'Suche', 'module/suche', 'regular', 'Suche - Mate Theme', '', 'noindex,nofollow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie Beispiele, wie eine Suche eingebunden werden kann.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(139, 90, 800, 1555067757, 'Kontakt', 'kontakt', 'regular', 'Kontakt - Mate Theme', '', 'index,follow', 'Auf dieser Demo-Seite des Mate Themes für das Content-Management-System Contao finden Sie ein Beispiel einer Kontakt-Seite mit Anschrift und Kontaktformular.', 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 57, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', 'contact', 'map_default', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(140, 90, 64, 1538488861, '404 Seite nicht gefunden', '404-seite-nicht-gefunden', 'error_404', '404 Seite nicht gefunden', '', 'index,follow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', '', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(141, 90, 96, 1560845846, '403 Zugriff verweigert', '403-zugriff-verweigert', 'error_401', '403 Zugriff verweigert', '', 'index,follow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', '', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(150, 156, 512, 1555059538, 'ohne Schräge', 'layouts/headerbild-layouts/ohne-schräge', 'regular', '', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(156, 118, 24, 1555062174, 'Headerbild Layouts', 'layouts/headerbild-layouts', 'forward', '', '', 'noindex,nofollow', NULL, 'permanent', 157, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 56, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(157, 156, 256, 1555059314, 'Schräge nach links', 'layouts/headerbild-layouts/schräge-nach-links', 'regular', '', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(158, 156, 384, 1555059305, 'Schräge nach rechts', 'layouts/headerbild-layouts/schräge-nach-rechts', 'regular', '', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '1', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(159, 118, 64, 1555059520, 'Zweispaltiges Layout', 'layouts/zweispaltiges-layout', 'forward', '', '', 'noindex,nofollow', NULL, 'permanent', 120, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', 'map_never', '', '1', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(161, 118, 16, 1575631566, 'Layout mit geradem Header', 'layouts/layout-mit-geradem-header', 'regular', '', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '1', 59, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(162, 118, 256, 1555061298, 'Elemente mit Schrägen', 'layouts/elemente-mit-schrägen', 'regular', '', '', 'noindex,nofollow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', 'map_never', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); -INSERT INTO `tl_page` (`id`, `pid`, `sorting`, `tstamp`, `title`, `alias`, `type`, `pageTitle`, `language`, `robots`, `description`, `redirect`, `jumpTo`, `redirectBack`, `url`, `target`, `dns`, `staticFiles`, `staticPlugins`, `fallback`, `adminEmail`, `dateFormat`, `timeFormat`, `datimFormat`, `useSSL`, `autoforward`, `protected`, `groups`, `includeLayout`, `layout`, `twoFactorJumpTo`, `includeCache`, `cache`, `clientCache`, `includeChmod`, `cuser`, `cgroup`, `chmod`, `noSearch`, `cssClass`, `sitemap`, `hide`, `guests`, `tabindex`, `accesskey`, `published`, `start`, `stop`, `enforceTwoFactor`, `requireItem`, `alwaysLoadFromCache`, `validAliasCharacters`, `robotsTxt`, `favicon`, `sitemapName`, `createSitemap`) VALUES(164, 92, 1152, 1560781890, 'Modale Dialoge', 'module/modale-dialoge', 'regular', '', '', 'index,follow', NULL, 'permanent', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', NULL, '', 0, 0, '', 0, 0, '', 0, 0, 'a:9:{i:0;s:2:\"u1\";i:1;s:2:\"u2\";i:2;s:2:\"u3\";i:3;s:2:\"u4\";i:4;s:2:\"u5\";i:5;s:2:\"u6\";i:6;s:2:\"g4\";i:7;s:2:\"g5\";i:8;s:2:\"g6\";}', '', '', 'map_default', '', '', 0, '', '1', '', '', '', '', '', '', NULL, NULL, '', ''); - -INSERT INTO `tl_theme` (`id`, `tstamp`, `name`, `author`, `folders`, `screenshot`, `templates`, `vars`, `pdir_th_short_code`, `pdir_th_license_domain`, `pdir_th_description`) VALUES(17, 1566205456, 'Odd Theme', 'pdir digital agentur // pdir GmbH / Juliane Langer, Philipp Seibt, Mathias Arzberger', NULL, NULL, '', 'a:0:{}', 'odd', '', '<b>pdir contao theme licence</b><br>\nMit dieser <b>Lizenz</b> gekennzeichnete Themes dürfen sowohl privat als auch kommerziell eingesetzt werden. Der Copyright-Link bzw. die Copyright-Links \"<i>ODD Theme by montequesto</i>\" dürfen nicht entfernt oder verändert werden. Das gilt auch wenn Sie das Theme\nnur als Basis für eine Website einsetzen und es verändern.\nMöchten Sie diesen Theme ohne Copyright-Link einsetzen, müssen Sie eine kostenpflichtige Lizenz erwerben.'); -COMMIT; - -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; diff --git a/tests/ContaoThemesNetOddThemeBundleTest.php b/tests/ContaoThemesNetOddThemeBundleTest.php new file mode 100644 index 0000000..78db920 --- /dev/null +++ b/tests/ContaoThemesNetOddThemeBundleTest.php @@ -0,0 +1,32 @@ + + * + * @package theme odd bundle + * @link https://github.com/contao-themes-net/odd-theme-bundle + * @license pdir contao theme licence + * @author pdir GmbH + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace ContaoThemesNet\OddThemeBundle\Tests; + +use ContaoThemesNet\OddThemeBundle\DependencyInjection\ContaoThemesNetOddThemeExtension; +use PHPUnit\Framework\TestCase; + +class ContaoThemesNetOddThemeBundleTest extends TestCase +{ + public function testCanBeInstantiated(): void + { + $bundle = new ContaoThemesNetOddThemeExtension(); + + $this->assertInstanceOf('ContaoThemesNet\OddThemeBundle\ContaoThemesNetOddThemeExtension', $bundle); + } +}